2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-09-01 14:55:12 +00:00

fixed an occurence of '==' -> '='

This commit is contained in:
Todd C. Miller
1996-06-20 04:27:49 +00:00
parent b57aab8cdb
commit 2f49ee3160

View File

@@ -295,13 +295,13 @@ runasuser : NAME {
} }
| ALIAS { | ALIAS {
if (find_alias($1, USER)) if (find_alias($1, USER))
$$ == TRUE; $$ = TRUE;
else else
$$ = FALSE; $$ = FALSE;
(void) free($1); (void) free($1);
} }
| ALL { | ALL {
$$ == TRUE; $$ = TRUE;
} }
; ;