2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 18:08:23 +00:00

added User_Alias support

This commit is contained in:
Todd C. Miller 1995-04-09 02:26:17 +00:00
parent ea57effc3a
commit 166d2b78ba

View File

@ -122,6 +122,10 @@ N [0-9][0-9]?[0-9]?
LEXTRACE("CMNDALIAS ");
return CMNDALIAS;
}
if (strcmp(yytext, "User_Alias") == 0) {
LEXTRACE("USERALIAS ");
return USERALIAS;
}
l = strlen(yytext) - 1;
if (isalpha(yytext[l]) || isdigit(yytext[l])) {