2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-30 22:05:46 +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 {
if (find_alias($1, USER))
$$ == TRUE;
$$ = TRUE;
else
$$ = FALSE;
(void) free($1);
}
| ALL {
$$ == TRUE;
$$ = TRUE;
}
;