Use ' instead of " for quoting in extensions.conf (bug #1872)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3257 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-06-21 14:20:03 +00:00
parent 502e74e5db
commit 8c4cacbd58

View File

@@ -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);