Use correct 3rd argument for ioctlsocket() under Watt-32.

This commit is contained in:
Gisle Vanem 2007-02-04 13:34:34 +00:00
parent a50414f594
commit 5446ed4733

View File

@ -557,8 +557,12 @@ static int nonblock(ares_socket_t sockfd, /* operate on this */
#endif
#if defined(HAVE_IOCTLSOCKET) && (SETBLOCK == 0)
#ifdef WATT32
char flags;
#else
/* Windows? */
unsigned long flags;
#endif
flags = nonblock;
return ioctlsocket(sockfd, FIONBIO, &flags);