diff options
author | Pierre Joye <pajoye@php.net> | 2012-03-05 20:53:40 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2012-03-05 20:53:40 +0000 |
commit | 2c43149f21d67fa3614972585b78bb5dbf1cc00e (patch) | |
tree | 420040b88e9645a3ff24d8d7ea9a086499db4c62 | |
parent | a05a3a0a4a2493b8f9065ff05c5792c31cfdae7e (diff) | |
download | php-git-2c43149f21d67fa3614972585b78bb5dbf1cc00e.tar.gz |
- fix bug #61290, fix build
-rw-r--r-- | win32/inet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/inet.h b/win32/inet.h index 7b3821c71b..e58083828f 100644 --- a/win32/inet.h +++ b/win32/inet.h @@ -3,7 +3,7 @@ #endif #include <Ws2tcpip.h> -#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); |