=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/parse.lex,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- src/usr.bin/sudo/Attic/parse.lex 2002/01/03 03:49:16 1.4 +++ src/usr.bin/sudo/Attic/parse.lex 2002/01/16 18:09:13 1.5 @@ -69,7 +69,7 @@ #include #ifndef lint -static const char rcsid[] = "$Sudo: parse.lex,v 1.117 2001/12/30 22:12:06 millert Exp $"; +static const char rcsid[] = "$Sudo: parse.lex,v 1.118 2002/01/15 18:16:31 millert Exp $"; #endif /* lint */ #undef yywrap /* guard against a yywrap macro */ @@ -157,7 +157,7 @@ } { - \\[:\,= \t#] { + \\[:\\,= \t#] { LEXTRACE("QUOTEDCHAR "); fill_args(yytext + 1, 1, sawspace); sawspace = FALSE; @@ -169,7 +169,7 @@ return(COMMAND); } /* end of command line args */ - [^:, \t\n]+ { + [^\\:, \t\n]+ { LEXTRACE("ARG "); fill_args(yytext, yyleng, sawspace); sawspace = FALSE;