aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/config.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/config.c b/main/config.c
index 5639aa9e9..7a47ffd19 100644
--- a/main/config.c
+++ b/main/config.c
@@ -1103,7 +1103,7 @@ int read_config_maps(void)
{
struct ast_config *config, *configtmp;
struct ast_variable *v;
- char *driver, *table, *database, *stringp;
+ char *driver, *table, *database, *stringp, *tmp;
clear_config_maps();
@@ -1119,6 +1119,9 @@ int read_config_maps(void)
stringp = v->value;
driver = strsep(&stringp, ",");
+ if ((tmp = strchr(stringp, '\"')))
+ stringp = tmp;
+
/* check if the database text starts with a double quote */
if (*stringp == '"') {
stringp++;