From 73e755f478bfbbdb3835c14c37aa30db0be173fa Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Mon, 12 Jan 2015 21:09:18 -0800 Subject: [PATCH] Fix typo in rev.13840 --- compat/os/mswindows.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compat/os/mswindows.h b/compat/os/mswindows.h index ab822ab92e..860bb3e6bb 100644 --- a/compat/os/mswindows.h +++ b/compat/os/mswindows.h @@ -627,7 +627,7 @@ inet_ntop(int af, const void *src, char *dst, size_t size) #if HAVE_DECL_INETNTOPA return (char*)InetNtopA(af, const_cast(src), dst, size); #else - return xinet_ntop(af, src, dst, size); + return ::inet_ntop(af, src, dst, size); #endif } #define inet_ntop(a,s,d,l) Squid::inet_ntop(a,s,d,l) @@ -638,7 +638,7 @@ inet_pton(int af, const void *src, char *dst) #if HAVE_DECL_INETPTONA return (char*)InetPtonA(af, const_cast(src), dst); #else - return xinet_pton(af, src, dst); + return ::inet_pton(af, src, dst); #endif } #define inet_pton(a,s,d) Squid::inet_pton(a,s,d) -- 2.47.3