From: Todd C. Miller Date: Thu, 20 Jun 1996 04:27:49 +0000 (+0000) Subject: fixed an occurence of '==' -> '=' X-Git-Tag: SUDO_1_5_0~147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f49ee31604c0ae10cccc852f0a72168cf9ad435;p=sudo fixed an occurence of '==' -> '=' --- diff --git a/parse.yacc b/parse.yacc index a3082580b..974297012 100644 --- a/parse.yacc +++ b/parse.yacc @@ -295,13 +295,13 @@ runasuser : NAME { } | ALIAS { if (find_alias($1, USER)) - $$ == TRUE; + $$ = TRUE; else $$ = FALSE; (void) free($1); } | ALL { - $$ == TRUE; + $$ = TRUE; } ;