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 /sql/net_serv.cc | |
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 'sql/net_serv.cc')
-rw-r--r-- | sql/net_serv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/net_serv.cc b/sql/net_serv.cc index bd4505a3d7f..9d84d0b2427 100644 --- a/sql/net_serv.cc +++ b/sql/net_serv.cc @@ -132,7 +132,7 @@ my_bool my_net_init(NET *net, Vio* vio) if (vio != 0) /* If real connection */ { net->fd = vio_fd(vio); /* For perl DBI/DBD */ -#if defined(MYSQL_SERVER) && !defined(___WIN__) && !defined(__EMX__) && !defined(OS2) +#if defined(MYSQL_SERVER) && !defined(__WIN__) && !defined(__EMX__) && !defined(OS2) if (!(test_flags & TEST_BLOCKING)) { my_bool old_mode; |