From a0c711d6de661ff7380ea287eba400b8b43c722c Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Fri, 21 Jul 2000 06:35:42 +0000 Subject: [PATCH] Fix imap_passive. From Brendan Cully. --- imap/imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0