don't let the EINTR stuff build on windows
This commit is contained in:
parent
0d1fc73f21
commit
326e8b9fc1
@ -1169,7 +1169,7 @@ Curl_SSLConnect(struct connectdata *conn,
|
|||||||
return CURLE_OPERATION_TIMEDOUT;
|
return CURLE_OPERATION_TIMEDOUT;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#ifdef EINTR
|
#if !defined(WIN32) && defined(EINTR)
|
||||||
/* For platforms without EINTR all errnos are bad */
|
/* For platforms without EINTR all errnos are bad */
|
||||||
if (errno == EINTR)
|
if (errno == EINTR)
|
||||||
continue; /* retry the select() */
|
continue; /* retry the select() */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user