X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3723efcb1d5ff37771174f9b90aee40b438f34e6..fcb69e5cdcfdfd0bdcea2127e5f4c9133a2282b9:/lib/inet_pton.c diff --git a/lib/inet_pton.c b/lib/inet_pton.c index 41884aff..4034fe1a 100644 --- a/lib/inet_pton.c +++ b/lib/inet_pton.c @@ -41,16 +41,17 @@ static int inet_pton6(const char *src, unsigned char *dst); * Paul Vixie, 1996. */ int -isc_net_pton(af, src, dst) - int af; - const char *src; - void *dst; +inet_pton(int af, + const char *src, + void *dst) { switch (af) { case AF_INET: return (inet_pton4(src, dst)); +#ifdef INET6 case AF_INET6: return (inet_pton6(src, dst)); +#endif default: errno = EAFNOSUPPORT; return (-1); @@ -121,6 +122,7 @@ inet_pton4(src, dst) * author: * Paul Vixie, 1996. */ +#ifdef INET6 static int inet_pton6(src, dst) const char *src; @@ -205,3 +207,4 @@ inet_pton6(src, dst) memcpy(dst, tmp, NS_IN6ADDRSZ); return (1); } +#endif