@@ -3007,16 +3007,16 @@ SplitIdentifierString(char *rawstring, char separator,
30073007char * curname ;
30083008char * endp ;
30093009
3010- if (* nextp == '\ "' )
3010+ if (* nextp == '"' )
30113011{
30123012/* Quoted name --- collapse quote-quote pairs, no downcasing */
30133013curname = nextp + 1 ;
30143014for (;;)
30153015{
3016- endp = strchr (nextp + 1 ,'\ "' );
3016+ endp = strchr (nextp + 1 ,'"' );
30173017if (endp == NULL )
30183018return false;/* mismatched quotes */
3019- if (endp [1 ]!= '\ "' )
3019+ if (endp [1 ]!= '"' )
30203020break ;/* found end of quoted name */
30213021/* Collapse adjacent quotes into one quote, and look again */
30223022memmove (endp ,endp + 1 ,strlen (endp ));
@@ -3132,16 +3132,16 @@ SplitDirectoriesString(char *rawstring, char separator,
31323132char * curname ;
31333133char * endp ;
31343134
3135- if (* nextp == '\ "' )
3135+ if (* nextp == '"' )
31363136{
31373137/* Quoted name --- collapse quote-quote pairs */
31383138curname = nextp + 1 ;
31393139for (;;)
31403140{
3141- endp = strchr (nextp + 1 ,'\ "' );
3141+ endp = strchr (nextp + 1 ,'"' );
31423142if (endp == NULL )
31433143return false;/* mismatched quotes */
3144- if (endp [1 ]!= '\ "' )
3144+ if (endp [1 ]!= '"' )
31453145break ;/* found end of quoted name */
31463146/* Collapse adjacent quotes into one quote, and look again */
31473147memmove (endp ,endp + 1 ,strlen (endp ));