diff options
author | 2017-09-28 16:01:25 -0700 | |
---|---|---|
committer | 2017-09-28 16:01:25 -0700 | |
commit | 73144f9ab2ba9b37bc3184499faaae1004c8ed90 (patch) | |
tree | 8f91a4f8c5b9bbbb7f46a15917687fa32dba8713 /src | |
parent | 6489785f3d12adcfa73e8f1d26b869fe723574b5 (diff) | |
parent | 30f1d0fe79d45c8d89a654faf00431366d75ba84 (diff) |
Merge pull request #12759 from kpayson64/no_more_xp
Specify min windows version as Vista for Python
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lib/iomgr/socket_utils_windows.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/lib/iomgr/socket_utils_windows.c b/src/core/lib/iomgr/socket_utils_windows.c index 2732c159aa..6e85e4b61f 100644 --- a/src/core/lib/iomgr/socket_utils_windows.c +++ b/src/core/lib/iomgr/socket_utils_windows.c @@ -26,12 +26,8 @@ #include <grpc/support/log.h> const char *grpc_inet_ntop(int af, const void *src, char *dst, size_t size) { -#ifdef GPR_WIN_INET_NTOP - return inet_ntop(af, src, dst, size); -#else /* Windows InetNtopA wants a mutable ip pointer */ return InetNtopA(af, (void *)src, dst, size); -#endif /* GPR_WIN_INET_NTOP */ } #endif /* GRPC_WINDOWS_SOCKETUTILS */ |