From: wessels <> Date: Wed, 14 Mar 2001 06:22:42 +0000 (+0000) Subject: Looks like we forgot to return from dnsSubmit in the event of failure. X-Git-Tag: SQUID_3_0_PRE1~1569 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5553d5e7246597adec23eb0b2f251817bb8068c0;p=thirdparty%2Fsquid.git Looks like we forgot to return from dnsSubmit in the event of failure. --- diff --git a/src/dns.cc b/src/dns.cc index 135789d53e..03524999f3 100644 --- a/src/dns.cc +++ b/src/dns.cc @@ -1,6 +1,6 @@ /* - * $Id: dns.cc,v 1.85 2001/01/12 00:37:17 wessels Exp $ + * $Id: dns.cc,v 1.86 2001/03/13 23:22:42 wessels Exp $ * * DEBUG: section 34 Dnsserver interface * AUTHOR: Harvest Derived @@ -98,6 +98,7 @@ dnsSubmit(const char *lookup, HLPCB * callback, void *data) fatal("DNS servers not responding for 3 minutes"); debug(34, 1) ("dnsSubmit: queue overload, rejecting %s\n", lookup); callback(data, "$fail temporary network problem, pleas retry later"); + return; } first_warn = 0; helperSubmit(dnsservers, buf, callback, data);