From f0a577f33cce63798838f5d55212c8c5a23a7edc Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Thu, 15 Apr 2010 02:21:24 +0000 Subject: [PATCH] Reword comment slightly. svn path=/trunk/; revision=32470 --- inet_ntop.c | 2 +- inet_pton.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inet_ntop.c b/inet_ntop.c index 725c7cf0e2..725ce276b9 100644 --- a/inet_ntop.c +++ b/inet_ntop.c @@ -36,7 +36,7 @@ #ifdef HAVE_WINSOCK2_H #include /* needed to define AF_ values on Windows */ -#if _MSC_VER < 1600 /* VC10 (and presumably future VC versions will) have this definition */ +#if _MSC_VER < 1600 /* Windows VC10 (and presumably newer) errno.h defines EAFNOSUPPORT */ #define EAFNOSUPPORT WSAEAFNOSUPPORT #endif #endif diff --git a/inet_pton.c b/inet_pton.c index 10a7f7dd05..4d870edab4 100644 --- a/inet_pton.c +++ b/inet_pton.c @@ -35,7 +35,7 @@ #ifdef HAVE_WINSOCK2_H #include /* needed to define AF_ values on Windows */ -#if _MSC_VER < 1600 /* VC10 (and presumably future VC versions will) have this definition */ +#if _MSC_VER < 1600 /* Windows VC10 (and presumably newer) errno.h defines EAFNOSUPPORT */ #define EAFNOSUPPORT WSAEAFNOSUPPORT #endif #endif