make the SSL connect use the same default connect timeout define as the

generic connect uses
This commit is contained in:
Daniel Stenberg 2004-06-30 09:22:48 +00:00
parent 4191741fb6
commit ba40eccc90
3 changed files with 4 additions and 3 deletions

View file

@ -1269,7 +1269,7 @@ Curl_SSLConnect(struct connectdata *conn,
}
else
/* no particular time-out has been set */
timeout_ms=300000; /* milliseconds, default to five minutes */
timeout_ms= DEFAULT_CONNECT_TIMEOUT;
FD_ZERO(&writefd);