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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33b2db2c6db1f6ccaae0aeac0aa985616d95154d;p=neomutt Fix C precedence buglet in getlogin preventing it from actually calling getuser. --- diff --git a/account.c b/account.c index 9647657dd..13a02a71d 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));