summaryrefslogtreecommitdiffstats
path: root/account.c
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2005-08-03 15:34:14 +0000
committerBrendan Cully <brendan@kublai.com>2005-08-03 15:34:14 +0000
commit7a5fe4f91386dbecd7e4954cba0e13ff9293f5a8 (patch)
treef7f5020169fa9334e6f757c7340b2a783e1bb4ef /account.c
parent462be8bed5dcdf860ec6adfeb10703dc053e3c1c (diff)
Fix C precedence buglet in getlogin preventing it from actually calling
getuser.
Diffstat (limited to 'account.c')
-rw-r--r--account.c2
1 files changed, 1 insertions, 1 deletions
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));