]> granicus.if.org Git - mutt/commitdiff
Fix C precedence buglet in getlogin preventing it from actually calling
authorBrendan Cully <brendan@kublai.com>
Wed, 3 Aug 2005 15:34:14 +0000 (15:34 +0000)
committerBrendan Cully <brendan@kublai.com>
Wed, 3 Aug 2005 15:34:14 +0000 (15:34 +0000)
getuser.

account.c

index 9647657dd572a1f83a228722c9a80629198de915..13a02a71df2809515c59a22b822f79e8f48ebd8b 100644 (file)
--- 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));