From: Wayne Davison Date: Thu, 14 May 2009 18:22:37 +0000 (-0700) Subject: Switch from inet_aton() to inet_pton() (since we supply a compatibility X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/87755c6ceae2efe30215281b93258f723329a677 Switch from inet_aton() to inet_pton() (since we supply a compatibility function for the latter, it will always exist). --- diff --git a/lib/getaddrinfo.c b/lib/getaddrinfo.c index b7432870..96d7a2ba 100644 --- a/lib/getaddrinfo.c +++ b/lib/getaddrinfo.c @@ -295,9 +295,8 @@ int getaddrinfo(const char *node, res); } else if (hints.ai_flags & AI_NUMERICHOST) { struct in_addr ip; - if (!inet_aton(node, &ip)) { + if (inet_pton(AF_INET, node, &ip) <= 0) return EAI_FAIL; - } return getaddr_info_single_addr(service, ntohl(ip.s_addr), &hints,