diff options
author | Steve Holme <steve_holme@hotmail.com> | 2016-03-05 20:10:11 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-03-08 19:36:46 +0000 |
commit | a5aec58726beae3926bcbe2fed83953ea3cd636e (patch) | |
tree | 96470f3195285ff61db0a4c92d2d11ff52bc0f2d /lib/pop3.c | |
parent | 307f3cf3b3066ce367a8e694f85e57c63a8bf4b7 (diff) | |
download | curl-a5aec58726beae3926bcbe2fed83953ea3cd636e.tar.gz |
imap/pop3/smtp: Fixed connections upgraded with TLS are not reused
Regression since commit 710f14edba.
Bug: https://github.com/curl/curl/issues/422
Reported-by: Justin Ehlert
Diffstat (limited to 'lib/pop3.c')
-rw-r--r-- | lib/pop3.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/pop3.c b/lib/pop3.c index 73e1cb2e4..cb53b7445 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -225,7 +225,11 @@ static const struct SASLproto saslpop3 = { #ifdef USE_SSL static void pop3_to_pop3s(struct connectdata *conn) { + /* Change the connection handler */ conn->handler = &Curl_handler_pop3s; + + /* Set the connection's upgraded to TLS flag */ + conn->tls_upgraded = TRUE; } #else #define pop3_to_pop3s(x) Curl_nop_stmt @@ -1354,6 +1358,10 @@ static CURLcode pop3_setup_connection(struct connectdata *conn) if(result) return result; + /* Clear the TLS upgraded flag */ + conn->tls_upgraded = FALSE; + + /* Set up the proxy if necessary */ if(conn->bits.httpproxy && !data->set.tunnel_thru_httpproxy) { /* Unless we have asked to tunnel POP3 operations through the proxy, we switch and use HTTP operations only */ |