From fd49ea4516a608abb6881c31ddaafa1a1cdf6a40 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Wed, 26 Apr 2000 17:43:00 +0000 Subject: [PATCH] Fix the imap_force_ssl option. --- imap/util.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/imap/util.c b/imap/util.c index bf0862a2..d1893662 100644 --- a/imap/util.c +++ b/imap/util.c @@ -23,6 +23,7 @@ #include "mutt.h" #include "mx.h" /* for M_IMAP */ #include "imap_private.h" +#include "imap_ssl.h" #include #include @@ -179,11 +180,12 @@ int imap_parse_path (const char *path, IMAP_MBOX *mx) return (-1); } } + } + #ifdef USE_SSL - else if (option (OPTIMAPFORCESSL)) - imap_set_ssl (mx); + if (option (OPTIMAPFORCESSL)) + imap_set_ssl (mx); #endif - } return 0; } -- 2.50.1