diff options
author | unknown <reggie@linux.site> | 2005-07-12 10:31:09 -0600 |
---|---|---|
committer | unknown <reggie@linux.site> | 2005-07-12 10:31:09 -0600 |
commit | 73fd169d0215700583f335c6e42243e3fa1553c4 (patch) | |
tree | 064a0becf332b11c51aa50216454f07e4b8581a6 /include/my_global.h | |
parent | 2bca6451f78d22fe4bc3c5c5b488b57cb9389492 (diff) | |
download | mariadb-git-73fd169d0215700583f335c6e42243e3fa1553c4.tar.gz |
Fixed some vio code that was using ___WIN__ instead of __WIN__
include/my_global.h:
set SOCKET_EWOULDBLOCK to the proper windows def WSAEWOULDBLOCK
sql/net_serv.cc:
fixed typo with using 3 leading underscores instead of 2
vio/vio.c:
fixed typo with using 3 leading underscores instead of 2
vio/viosocket.c:
fixed typo with using 3 leading underscores instead of 2
Diffstat (limited to 'include/my_global.h')
-rw-r--r-- | include/my_global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_global.h b/include/my_global.h index a7e6bba82b6..eab6050d2dc 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -797,7 +797,7 @@ typedef off_t os_off_t; #define socket_errno WSAGetLastError() #define SOCKET_EINTR WSAEINTR #define SOCKET_EAGAIN WSAEINPROGRESS -#define SOCKET_EWOULDBLOCK WSAEINPROGRESS +#define SOCKET_EWOULDBLOCK WSAEWOULDBLOCK #define SOCKET_ENFILE ENFILE #define SOCKET_EMFILE EMFILE #elif defined(OS2) |