don't let the EINTR stuff build on windows

This commit is contained in:
Daniel Stenberg 2004-03-11 12:57:04 +00:00
Родитель 0d1fc73f21
Коммит 326e8b9fc1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1169,7 +1169,7 @@ Curl_SSLConnect(struct connectdata *conn,
return CURLE_OPERATION_TIMEDOUT;
}
else {
#ifdef EINTR
#if !defined(WIN32) && defined(EINTR)
/* For platforms without EINTR all errnos are bad */
if (errno == EINTR)
continue; /* retry the select() */