aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xpbx/pbx_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index 990059b5c..e82c49737 100755
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -113,8 +113,8 @@ static char *process_quotes_and_slashes(char *start, char find, char replace_wit
} else {
if (*start == '\\') {
inEscape = 1; /* Do not copy \ into the data */
- } else if (*start == '\"') {
- inQuotes = 1-inQuotes; /* Do not copy " into the data */
+ } else if (*start == '\'') {
+ inQuotes = 1-inQuotes; /* Do not copy ' into the data */
} else {
/* Replace , with |, unless in quotes */
*dataPut++ = inQuotes ? *start : ((*start==find) ? replace_with : *start);