From: Steinar H. Gunderson Date: Thu, 4 Oct 2007 08:09:04 +0000 (+0000) Subject: Send the timeout count in ares_getnameinfo(). X-Git-Tag: curl-7_17_1~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77a3e3c7f714378101de845be33269ee4b3b0d4d;p=curl Send the timeout count in ares_getnameinfo(). --- diff --git a/ares/ares_getnameinfo.c b/ares/ares_getnameinfo.c index 4f690f9d0..7fe191f86 100644 --- a/ares/ares_getnameinfo.c +++ b/ares/ares_getnameinfo.c @@ -252,7 +252,7 @@ static void nameinfo_callback(void *arg, int status, int timeouts, struct hosten niquery->callback(niquery->arg, ARES_SUCCESS, 0, ipbuf, service); return; } - niquery->callback(niquery->arg, status, 0, NULL, NULL); + niquery->callback(niquery->arg, status, niquery->timeouts, NULL, NULL); free(niquery); }