Commit 676597e9 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Ates Goral found out that if you specified both CURLOPT_CONNECTTIMEOUT and

CURLOPT_TIMEOUT, the _longer_ time would wrongly be used for the SSL
connection time-out!
parent 686d9074
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1332,7 +1332,7 @@ Curl_ossl_connect_step2(struct connectdata *conn,

    /* get the most strict timeout of the ones converted to milliseconds */
    if(data->set.timeout &&
       (data->set.timeout>data->set.connecttimeout))
       (data->set.timeout<data->set.connecttimeout))
      *timeout_ms = data->set.timeout*1000;
    else
      *timeout_ms = data->set.connecttimeout*1000;