--- pbx_config.c-1.43 Mon Jun 28 20:15:29 2004 +++ pbx_config.c Mon Jun 28 20:20:36 2004 @@ -113,8 +113,8 @@ } 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);