- Wesley Miaw reported bug #2958179 which identified a case of looping during

OpenSSL based SSL handshaking even though the multi interface was used and
  there was no good reason for it.

  http://curl.haxx.se/bug/view.cgi?id=2958179
This commit is contained in:
Daniel Stenberg
2010-03-01 21:59:07 +00:00
parent 1a1ffb10d0
commit 496002ea1c
3 changed files with 10 additions and 2 deletions

View File

@@ -2423,7 +2423,7 @@ ossl_connect_common(struct connectdata *conn,
}
retcode = ossl_connect_step2(conn, sockindex);
if(retcode)
if(retcode || (data->state.used_interface == Curl_if_multi))
return retcode;
} /* repeat step2 until all transactions are done. */