]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
config-win32: Fix warning HAVE_WINSOCK2_H undefined
authorGisle Vanem <gvanem@yahoo.no>
Tue, 8 Dec 2015 00:05:42 +0000 (19:05 -0500)
committerJay Satiro <raysatiro@yahoo.com>
Tue, 8 Dec 2015 00:07:51 +0000 (19:07 -0500)
lib/config-win32.h

index 4f59791883724e3e5a5cca4b96da081e2043eb56..1e6330463a4ef5346b237c7681d4831afc6fb266 100644 (file)
@@ -627,7 +627,8 @@ Vista
 /* Define if struct sockaddr_in6 has the sin6_scope_id member. */
 #define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1
 
-#if HAVE_WINSOCK2_H && defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600)
+#if defined(HAVE_WINSOCK2_H) && defined(_WIN32_WINNT) && \
+    (_WIN32_WINNT >= 0x0600)
 #define HAVE_STRUCT_POLLFD 1
 #endif