Show
Ignore:
Timestamp:
2006-12-03 06:07:54 (2 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Fix logic error; debian#400831.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • account.c

    r4343 r4888  
    222222void mutt_account_unsetpass (ACCOUNT* account) 
    223223{ 
    224   account->flags &= !M_ACCT_PASS; 
    225 } 
     224  account->flags &= ~M_ACCT_PASS; 
     225}