From 7a5fe4f91386dbecd7e4954cba0e13ff9293f5a8 Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Wed, 3 Aug 2005 15:34:14 +0000 Subject: [PATCH] Fix C precedence buglet in getlogin preventing it from actually calling getuser. --- account.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.40.0