Commit ef3b425b authored by Steinar H. Gunderson's avatar Steinar H. Gunderson
Browse files

Unrevert previous 'missing' hunks. They were missing since the patch is still in for review :-)

parent 026d93b4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
        }