mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-06 15:00:40 +08:00
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:
parent
1ebe7a6eaf
commit
278880083b
@ -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 ))
|
||||
|
Loading…
x
Reference in New Issue
Block a user