projects
/
neomutt
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a50815
)
Fix C precedence buglet in getlogin preventing it from actually calling
author
Brendan Cully
<brendan@kublai.com>
Wed, 3 Aug 2005 15:34:14 +0000
(15:34 +0000)
committer
Brendan Cully
<brendan@kublai.com>
Wed, 3 Aug 2005 15:34:14 +0000
(15:34 +0000)
getuser.
account.c
patch
|
blob
|
history
diff --git
a/account.c
b/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));