From 2c43149f21d67fa3614972585b78bb5dbf1cc00e Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Mon, 5 Mar 2012 20:53:40 +0000 Subject: [PATCH] - fix bug #61290, fix build --- win32/inet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/inet.h b/win32/inet.h index 7b3821c71bc..e58083828f4 100644 --- a/win32/inet.h +++ b/win32/inet.h @@ -3,7 +3,7 @@ #endif #include -#if (_WIN32_WINNT <= 0x500) +#if (_WIN32_WINNT < 0x0600) PHPAPI int inet_pton(int af, const char* src, void* dst); PHPAPI const char* inet_ntop(int af, const void* src, char* dst, size_t size); PHPAPI int inet_aton(const char *cp, struct in_addr *inp);