aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2017-01-24 09:43:02 -0800
committerGravatar Ken Payson <kpayson@google.com>2017-01-24 09:43:02 -0800
commit464ce24b40c9291362e31fb4105a781618601c89 (patch)
treeb36517579bd7edfe3ea38da7321328132a65f3d3
parent45a520f51fb020e5bff992b71efa702d812134db (diff)
Add back comment
-rw-r--r--src/core/lib/iomgr/socket_utils_windows.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/socket_utils_windows.c b/src/core/lib/iomgr/socket_utils_windows.c
index ebca8a5ded..5bbe8fa34c 100644
--- a/src/core/lib/iomgr/socket_utils_windows.c
+++ b/src/core/lib/iomgr/socket_utils_windows.c
@@ -44,6 +44,7 @@ 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 */
}