summaryrefslogtreecommitdiff
path: root/adig.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 /adig.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 'adig.c')
-rw-r--r--adig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/adig.c b/adig.c
index fb3a432..a0f622a 100644
--- a/adig.c
+++ b/adig.c
@@ -153,8 +153,8 @@ int main(int argc, char **argv)
fd_set read_fds, write_fds;
struct timeval *tvp, tv;
-#ifdef WIN32
- WORD wVersionRequested = MAKEWORD(1,1);
+#ifdef USE_WINSOCK
+ WORD wVersionRequested = MAKEWORD(USE_WINSOCK,USE_WINSOCK);
WSADATA wsaData;
WSAStartup(wVersionRequested, &wsaData);
#endif