diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-11 12:57:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-11 12:57:04 +0000 |
commit | 326e8b9fc1e6bc3b83c09ecaea96f10a403edcf5 (patch) | |
tree | 68e8c532af9eb7e29633bf7ced29b761c3b48607 /lib | |
parent | 0d1fc73f2119e1f75f58b32cdc9f9d45fa71ac9c (diff) |
don't let the EINTR stuff build on windows
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssluse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index f91b79a70..44d583965 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() */ |