Show
Ignore:
Timestamp:
2003-07-16 04:18:12 (5 years ago)
Author:
Brendan Cully <brendan@…>
Branch:
HEAD
Message:

I noticed that my mutt hung when I tried SASL DIGEST-MD5
authentication (I'm not sure when this started). I believe this
patch should solve that problem in a reliable way.

This patch also attempts to reuse connections even when
authentication fails, instead of just throwing away a perfectly good
socket.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • account.c

    r3423 r3437  
    11/* 
    2  * Copyright (C) 2000 Brendan Cully <brendan@kublai.com> 
     2 * Copyright (C) 2000-3 Brendan Cully <brendan@kublai.com> 
    33 *  
    44 *     This program is free software; you can redistribute it and/or modify 
     
    181181  return 0; 
    182182} 
     183 
     184void mutt_account_unsetpass (ACCOUNT* account) 
     185{ 
     186  account->flags &= !M_ACCT_PASS; 
     187}