diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2008-11-20 16:05:59 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2008-11-20 16:05:59 +0000 |
commit | 81f5248b004a95fc67724fb6db2d5794f3acec63 (patch) | |
tree | 60a775ff2533210f737e12cbcc7b2a3edf92b586 /win32/inet.c | |
parent | 7fb3277334e02cbd4555ea4a66aa83408b23c99a (diff) | |
download | php-git-81f5248b004a95fc67724fb6db2d5794f3acec63.tar.gz |
Fix typo
Diffstat (limited to 'win32/inet.c')
-rw-r--r-- | win32/inet.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/win32/inet.c b/win32/inet.c index 02d00ca474..b794bcaeb4 100644 --- a/win32/inet.c +++ b/win32/inet.c @@ -1,5 +1,5 @@ #include "config.w32.h" -#if (_WIN32_WINNT < 0x0600) /* Vita/2k8 have these functions */ +#if (_WIN32_WINNT < 0x0600) /* Vista/2k8 have these functions */ #include "php.h" #include <winsock2.h> #include <windows.h> @@ -7,8 +7,7 @@ #include "inet.h" -PHPAPI int -inet_pton(int af, const char* src, void* dst) +PHPAPI int inet_pton(int af, const char* src, void* dst) { int address_length; struct sockaddr_storage sa; |