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:
@@ -295,13 +295,13 @@ runasuser : NAME {
|
||||
}
|
||||
| ALIAS {
|
||||
if (find_alias($1, USER))
|
||||
$$ == TRUE;
|
||||
$$ = TRUE;
|
||||
else
|
||||
$$ = FALSE;
|
||||
(void) free($1);
|
||||
}
|
||||
| ALL {
|
||||
$$ == TRUE;
|
||||
$$ = TRUE;
|
||||
}
|
||||
;
|
||||
|
||||
|
Reference in New Issue
Block a user