]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix typo in rev.13840
authorAmos Jeffries <squid3@treenet.co.nz>
Tue, 13 Jan 2015 05:09:18 +0000 (21:09 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Tue, 13 Jan 2015 05:09:18 +0000 (21:09 -0800)
compat/os/mswindows.h

index ab822ab92e6c19037f043302ce4d50c8be5b50ec..860bb3e6bbfcbb45d5a62052fa4bbc70896d4710 100644 (file)
@@ -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<void*>(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<void*>(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)