@@ -3007,16 +3007,16 @@ SplitIdentifierString(char *rawstring, char separator,
3007
3007
char * curname ;
3008
3008
char * endp ;
3009
3009
3010
- if (* nextp == '\ "' )
3010
+ if (* nextp == '"' )
3011
3011
{
3012
3012
/* Quoted name --- collapse quote-quote pairs, no downcasing */
3013
3013
curname = nextp + 1 ;
3014
3014
for (;;)
3015
3015
{
3016
- endp = strchr (nextp + 1 ,'\ "' );
3016
+ endp = strchr (nextp + 1 ,'"' );
3017
3017
if (endp == NULL )
3018
3018
return false;/* mismatched quotes */
3019
- if (endp [1 ]!= '\ "' )
3019
+ if (endp [1 ]!= '"' )
3020
3020
break ;/* found end of quoted name */
3021
3021
/* Collapse adjacent quotes into one quote, and look again */
3022
3022
memmove (endp ,endp + 1 ,strlen (endp ));
@@ -3132,16 +3132,16 @@ SplitDirectoriesString(char *rawstring, char separator,
3132
3132
char * curname ;
3133
3133
char * endp ;
3134
3134
3135
- if (* nextp == '\ "' )
3135
+ if (* nextp == '"' )
3136
3136
{
3137
3137
/* Quoted name --- collapse quote-quote pairs */
3138
3138
curname = nextp + 1 ;
3139
3139
for (;;)
3140
3140
{
3141
- endp = strchr (nextp + 1 ,'\ "' );
3141
+ endp = strchr (nextp + 1 ,'"' );
3142
3142
if (endp == NULL )
3143
3143
return false;/* mismatched quotes */
3144
- if (endp [1 ]!= '\ "' )
3144
+ if (endp [1 ]!= '"' )
3145
3145
break ;/* found end of quoted name */
3146
3146
/* Collapse adjacent quotes into one quote, and look again */
3147
3147
memmove (endp ,endp + 1 ,strlen (endp ));