summaryrefslogtreecommitdiff
path: root/ahost.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-10-18 21:05:40 +0000
committerYang Tse <yangsita@gmail.com>2006-10-18 21:05:40 +0000
commit77ac18117cf23d5ec8add1565691a7b980326934 (patch)
tree33c5486da1ddf826bb3753b55302b60b6c2e91b8 /ahost.c
parent70ed671edf618a0508d2f06ddb80e5813aca5e68 (diff)
downloadc-ares-77ac18117cf23d5ec8add1565691a7b980326934.tar.gz
c-ares-77ac18117cf23d5ec8add1565691a7b980326934.tar.bz2
c-ares-77ac18117cf23d5ec8add1565691a7b980326934.zip
Check for USE_WINSOCK instead of WIN32 where the check was done
to verify winsock API availability.
Diffstat (limited to 'ahost.c')
-rw-r--r--ahost.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ahost.c b/ahost.c
index 40cd084..92eacd7 100644
--- a/ahost.c
+++ b/ahost.c
@@ -64,8 +64,8 @@ int main(int argc, char **argv)
struct in_addr addr4;
struct in6_addr addr6;
-#ifdef WIN32
- WORD wVersionRequested = MAKEWORD(1,1);
+#ifdef USE_WINSOCK
+ WORD wVersionRequested = MAKEWORD(USE_WINSOCK,USE_WINSOCK);
WSADATA wsaData;
WSAStartup(wVersionRequested, &wsaData);
#endif