Loading lib/connect.c +1 −1 Original line number Diff line number Diff line Loading @@ -212,7 +212,7 @@ int waitconnect(curl_socket_t sockfd, /* socket */ #endif /* now select() until we get connect or timeout */ rc = Curl_select(CURL_SOCKET_BAD, sockfd, timeout_msec); rc = Curl_select(CURL_SOCKET_BAD, sockfd, (int)timeout_msec); if(-1 == rc) /* error, no connect here, try next */ return WAITCONN_SELECT_ERROR; Loading lib/ssluse.c +1 −1 Original line number Diff line number Diff line Loading @@ -1374,7 +1374,7 @@ Curl_SSLConnect(struct connectdata *conn, break; while(1) { what = Curl_select(readfd, writefd, timeout_ms); what = Curl_select(readfd, writefd, (int)timeout_ms); if(what > 0) /* reabable or writable, go loop in the outer loop */ break; Loading Loading
lib/connect.c +1 −1 Original line number Diff line number Diff line Loading @@ -212,7 +212,7 @@ int waitconnect(curl_socket_t sockfd, /* socket */ #endif /* now select() until we get connect or timeout */ rc = Curl_select(CURL_SOCKET_BAD, sockfd, timeout_msec); rc = Curl_select(CURL_SOCKET_BAD, sockfd, (int)timeout_msec); if(-1 == rc) /* error, no connect here, try next */ return WAITCONN_SELECT_ERROR; Loading
lib/ssluse.c +1 −1 Original line number Diff line number Diff line Loading @@ -1374,7 +1374,7 @@ Curl_SSLConnect(struct connectdata *conn, break; while(1) { what = Curl_select(readfd, writefd, timeout_ms); what = Curl_select(readfd, writefd, (int)timeout_ms); if(what > 0) /* reabable or writable, go loop in the outer loop */ break; Loading