summaryrefslogtreecommitdiffstats
path: root/account.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2006-12-03 14:07:54 +0000
committerThomas Roessler <roessler@does-not-exist.org>2006-12-03 14:07:54 +0000
commit8d54c9fdfd94f16ad4c4ec053a7cbda8a2c76b51 (patch)
tree3a2a705449c701012a6846c0af898707c84ded08 /account.c
parent245565a9c35499bac265f4165561c8c253b1bb03 (diff)
Fix logic error; debian#400831.
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 aae8d35c..d53d304d 100644
--- a/account.c
+++ b/account.c
@@ -221,5 +221,5 @@ int mutt_account_getpass (ACCOUNT* account)
void mutt_account_unsetpass (ACCOUNT* account)
{
- account->flags &= !M_ACCT_PASS;
+ account->flags &= ~M_ACCT_PASS;
}