From 77a3e3c7f714378101de845be33269ee4b3b0d4d Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 4 Oct 2007 08:09:04 +0000 Subject: [PATCH] Send the timeout count in ares_getnameinfo(). --- ares/ares_getnameinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }