diff options
author | Yang Tse <yangsita@gmail.com> | 2006-10-18 21:05:40 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-10-18 21:05:40 +0000 |
commit | 5df4be11657fc49d74e1e6b39c0003f7cf2f3772 (patch) | |
tree | 93d2ef65b7accbd9a6572dbfca634dc69e95ffce /lib/select.c | |
parent | 96445f1b7da2013c294c541530f0160e248b430e (diff) | |
download | curl-5df4be11657fc49d74e1e6b39c0003f7cf2f3772.tar.gz |
Check for USE_WINSOCK instead of WIN32 where the check was done
to verify winsock API availability.
Diffstat (limited to 'lib/select.c')
-rw-r--r-- | lib/select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/select.c b/lib/select.c index 7c2f2624f..b25067b6c 100644 --- a/lib/select.c +++ b/lib/select.c @@ -50,7 +50,7 @@ #include "connect.h" #include "select.h" -#if defined(WIN32) || defined(TPF) +#if defined(USE_WINSOCK) || defined(TPF) #define VERIFY_SOCK(x) /* sockets are not in range [0..FD_SETSIZE] */ #else #define VALID_SOCK(s) (((s) >= 0) && ((s) < FD_SETSIZE)) @@ -224,7 +224,7 @@ int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms) for (i = 0; i < nfds; i++) { if (ufds[i].fd == CURL_SOCKET_BAD) continue; -#ifndef WIN32 /* This is harmless and wrong on Win32 */ +#ifndef USE_WINSOCK /* winsock sockets are not in range [0..FD_SETSIZE] */ if (ufds[i].fd >= FD_SETSIZE) { errno = EINVAL; return -1; |