use Curl_inet_pton(), not inet_pton().

This commit is contained in:
Daniel Stenberg 2005-03-17 07:40:15 +00:00
parent 233237740d
commit 8b80ac2877
2 changed files with 3 additions and 3 deletions

View file

@ -242,8 +242,8 @@ Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn,
}
}
if((1 == inet_pton(AF_INET, hostname, addrbuf)) ||
(1 == inet_pton(AF_INET6, hostname, addrbuf))) {
if((1 == Curl_inet_pton(AF_INET, hostname, addrbuf)) ||
(1 == Curl_inet_pton(AF_INET6, hostname, addrbuf))) {
/* the given address is numerical only, prevent a reverse lookup */
ai_flags = AI_NUMERICHOST;
}