Fix sock_errset macro: Wrap it in (), return void to match Winsock version.

AC_SOCKET_INVALID nitpick: ((unsigned)~0) [needs 2's compl.] -> ((unsigned)-1)
This commit is contained in:
Hallvard Furuseth 2009-10-23 12:29:50 +00:00
parent 1ebe7a6eaf
commit 278880083b

View File

@ -82,14 +82,14 @@
#undef sock_errstr
#define sock_errno() errno
#define sock_errstr(e) STRERROR(e)
#define sock_errset(e) errno = (e)
#define sock_errset(e) ((void) (errno = (e)))
#ifdef HAVE_WINSOCK
# define tcp_read( s, buf, len ) recv( s, buf, len, 0 )
# define tcp_write( s, buf, len ) send( s, buf, len, 0 )
# define ioctl( s, c, a ) ioctlsocket( (s), (c), (a) )
# define ioctl_t u_long
# define AC_SOCKET_INVALID ((unsigned int) ~0)
# define AC_SOCKET_INVALID ((unsigned int) -1)
# ifdef SD_BOTH
# define tcp_close( s ) (shutdown( s, SD_BOTH ), closesocket( s ))