]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Use ' instead of " for quoting in extensions.conf (bug #1872)
authorMark Spencer <markster@digium.com>
Mon, 21 Jun 2004 14:20:03 +0000 (14:20 +0000)
committerMark Spencer <markster@digium.com>
Mon, 21 Jun 2004 14:20:03 +0000 (14:20 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3257 65c4cc65-6c06-0410-ace0-fbb531ad65f3

pbx/pbx_config.c

index 990059b5c2ed9eaf04cd6336b7b4705824519b83..e82c497379016d740f68a9056b3952a12aea90a0 100755 (executable)
@@ -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);