From d4db79eeccaea372e8d31c29a572cb143f60f37d Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 15 Nov 2004 20:15:43 +0000 Subject: In the fallback cases, clear the exception first. 2004-11-15 Jeffrey Stedfast * providers/pop3/camel-pop3-store.c (connect_to_server_wrapper): In the fallback cases, clear the exception first. * providers/imap/camel-imap-store.c (connect_to_server_wrapper): In the fallback cases, clear the exception first. * providers/imap4/camel-imap4-store.c (connect_to_server_wrapper): In the fallback cases, clear the exception first. svn path=/trunk/; revision=27928 --- camel/providers/imap/camel-imap-store.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'camel/providers/imap') diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index 067221571a..eb66f48725 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -919,10 +919,13 @@ connect_to_server_wrapper (CamelService *service, CamelException *ex) if (ai == NULL) return FALSE; - if (!(ret = connect_to_server (service, ai, mode, ex)) && mode == MODE_SSL) + if (!(ret = connect_to_server (service, ai, mode, ex)) && mode == MODE_SSL) { + camel_exception_clear (ex); ret = connect_to_server (service, ai, MODE_TLS, ex); - else if (!ret && mode == MODE_TLS) + } else if (!ret && mode == MODE_TLS) { + camel_exception_clear (ex); ret = connect_to_server (service, ai, MODE_CLEAR, ex); + } camel_freeaddrinfo (ai); -- cgit v1.2.3