From: Thomas Roessler Date: Fri, 21 Jul 2000 06:35:42 +0000 (+0000) Subject: Fix imap_passive. From Brendan Cully. X-Git-Tag: mutt-1-3-6-rel~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a0c711d6de661ff7380ea287eba400b8b43c722c;p=mutt Fix imap_passive. From Brendan Cully. --- diff --git a/imap/imap.c b/imap/imap.c index 300f24d0..3ffeb945 100644 --- a/imap/imap.c +++ b/imap/imap.c @@ -1227,7 +1227,7 @@ int imap_mailbox_check (char* path, int new) /* If imap_passive is set, don't open a connection to check for new mail */ if (option (OPTIMAPPASSIVE)) - connflags &= M_IMAP_CONN_NONEW; + connflags = M_IMAP_CONN_NONEW; if (!(idata = imap_conn_find (&(mx.account), connflags))) return -1;