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 | d1f7d3c8a9eb8a2a8b68083cf863cf94ea173335 (patch) | |
tree | 4bc440c3f54e8db7b724c74efcff34097b81ac17 /win32/inet.h | |
parent | 39d2996c57a991432eca023f91e92a480cabe276 (diff) | |
download | php-git-d1f7d3c8a9eb8a2a8b68083cf863cf94ea173335.tar.gz |
- fix bug #61290, fix build
Diffstat (limited to 'win32/inet.h')
-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 e96d76b24a..e58083828f 100644 --- a/win32/inet.h +++ b/win32/inet.h @@ -3,7 +3,7 @@ #endif #include <Ws2tcpip.h> -#if (_WIN32_WINNT <= 0x502) +#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); |