From: Daniel Stenberg Date: Thu, 11 Mar 2004 12:57:04 +0000 (+0000) Subject: don't let the EINTR stuff build on windows X-Git-Tag: curl-7_11_1~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=326e8b9fc1e6bc3b83c09ecaea96f10a403edcf5;p=thirdparty%2Fcurl.git don't let the EINTR stuff build on windows --- diff --git a/lib/ssluse.c b/lib/ssluse.c index f91b79a70f..44d5839652 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -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() */