From: Steinar H. Gunderson Date: Fri, 28 Sep 2007 15:56:28 +0000 (+0000) Subject: Unrevert previous 'missing' hunks. They were missing since the patch is still in... X-Git-Tag: curl-7_17_1~172 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef3b425b1136c11816489f274ca040f7d9146888;p=curl Unrevert previous 'missing' hunks. They were missing since the patch is still in for review :-) --- diff --git a/ares/ares_gethostbyname.c b/ares/ares_gethostbyname.c index 8150b2ae7..49ae53ed3 100644 --- a/ares/ares_gethostbyname.c +++ b/ares/ares_gethostbyname.c @@ -160,13 +160,13 @@ static void host_callback(void *arg, int status, int timeouts, { if (hquery->family == AF_INET) { - status = ares_parse_a_reply(abuf, alen, &host, NULL, NULL); + status = ares_parse_a_reply(abuf, alen, &host); if (host && channel->nsort) sort_addresses(host, channel->sortlist, channel->nsort); } else if (hquery->family == AF_INET6) { - status = ares_parse_aaaa_reply(abuf, alen, &host, NULL, NULL); + status = ares_parse_aaaa_reply(abuf, alen, &host); if (host && channel->nsort) sort6_addresses(host, channel->sortlist, channel->nsort); }