From: Amos Jeffries Date: Tue, 13 Jan 2015 05:09:18 +0000 (-0800) Subject: Fix typo in rev.13840 X-Git-Tag: merge-candidate-3-v1~353 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73e755f478bfbbdb3835c14c37aa30db0be173fa;p=thirdparty%2Fsquid.git Fix typo in rev.13840 --- 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)