From: Brendan Cully Date: Wed, 3 Aug 2005 15:34:14 +0000 (+0000) Subject: Fix C precedence buglet in getlogin preventing it from actually calling X-Git-Tag: mutt-1-5-10-rel~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a5fe4f91386dbecd7e4954cba0e13ff9293f5a8;p=mutt Fix C precedence buglet in getlogin preventing it from actually calling getuser. --- diff --git a/account.c b/account.c index 9647657d..13a02a71 100644 --- a/account.c +++ b/account.c @@ -178,7 +178,7 @@ int mutt_account_getlogin (ACCOUNT* account) } #endif - if (! account->flags & M_ACCT_LOGIN) + if (!(account->flags & M_ACCT_LOGIN)) { mutt_account_getuser (account); strfcpy (account->login, account->user, sizeof (account->login));