From: Todd C. Miller Date: Tue, 10 Sep 1996 04:18:57 +0000 (+0000) Subject: allow logins to start with a number (YUCK!) X-Git-Tag: SUDO_1_5_1~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de10f92819ae7a777719f76092b01d2979ff2294;p=sudo allow logins to start with a number (YUCK!) --- diff --git a/parse.lex b/parse.lex index dc612ce40..108c08923 100644 --- a/parse.lex +++ b/parse.lex @@ -232,7 +232,7 @@ NOPASSWD[[:blank:]]*: { return(ALIAS); } -[[:alpha:]][[:alnum:]_-]* { +[[:alnum:]][[:alnum:]_-]* { int l; fill(yytext, yyleng);