diff options
author | Steinar H. Gunderson <sesse@google.com> | 2007-09-28 15:56:28 +0000 |
---|---|---|
committer | Steinar H. Gunderson <sesse@google.com> | 2007-09-28 15:56:28 +0000 |
commit | ef3b425b1136c11816489f274ca040f7d9146888 (patch) | |
tree | b19f106c23a9464fe9e703bef63f9186f0647ed5 /ares | |
parent | 026d93b4f6f01b5a726da32a7da2a4105875d97e (diff) |
Unrevert previous 'missing' hunks. They were missing since the patch is still in for review :-)
Diffstat (limited to 'ares')
-rw-r--r-- | ares/ares_gethostbyname.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |