From 310647e9809986986650994d036af18ca9b17fb2 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 11 Jun 2009 10:07:33 -0700 Subject: Remember we switched to single-request mode. This change prevents repetition in most later calls of the resolver in case the DNS server or the network connection is broken. --- resolv/res_send.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'resolv') diff --git a/resolv/res_send.c b/resolv/res_send.c index 25a854f..39c69da 100644 --- a/resolv/res_send.c +++ b/resolv/res_send.c @@ -1008,7 +1008,7 @@ send_dg(res_state statp, seconds /= statp->nscount; if (seconds <= 0) seconds = 1; - bool single_request = ((statp->options) & RES_SNGLKUP) != 0;// XXX + bool single_request = (statp->options & RES_SNGLKUP) != 0;// XXX int save_gotsomewhere = *gotsomewhere; retry: evNowTime(&now); @@ -1059,6 +1059,7 @@ send_dg(res_state statp, have received the first answer. */ if (!single_request) { + statp->options |= RES_SNGLKUP; single_request = true; *gotsomewhere = save_gotsomewhere; goto retry; -- cgit v1.1