]> granicus.if.org Git - curl/commitdiff
pop3: Fixed blocking SSL connect when connecting via POP3S
authorSteve Holme <steve_holme@hotmail.com>
Thu, 14 Feb 2013 18:20:52 +0000 (18:20 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Thu, 14 Feb 2013 18:20:52 +0000 (18:20 +0000)
A call to Curl_ssl_connect() was accidentally left in when the SSL/TLS
connection layer was reworked in 7.29. Not only would this cause the
connection to block but had the additional overhead of calling the
non-blocking connect a little bit later.

lib/pop3.c

index 9c57f269bdec76b642ed6cc39283714e956fda5b..ffbb5156f601da49f40bf70d8c9bbda004f4bfa5 100644 (file)
@@ -1355,14 +1355,6 @@ static CURLcode pop3_connect(struct connectdata *conn, bool *done)
   pp->endofresp = pop3_endofresp;
   pp->conn = conn;
 
-  if(conn->handler->flags & PROTOPT_SSL) {
-    /* POP3S is simply POP3 with SSL for the control channel */
-    /* so perform the SSL initialization for this socket */
-    result = Curl_ssl_connect(conn, FIRSTSOCKET);
-    if(result)
-      return result;
-  }
-
   /* Initialise the pingpong layer */
   Curl_pp_init(pp);