From: hno <> Date: Fri, 15 Nov 2002 20:28:33 +0000 (+0000) Subject: Bugzilla #471: Minor typo in src/dns.c returned to user when the dnsserver X-Git-Tag: SQUID_3_0_PRE1~522 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88af5f5a7f41aeb788d560de521cfc07bed41ef8;p=thirdparty%2Fsquid.git Bugzilla #471: Minor typo in src/dns.c returned to user when the dnsserver processes are all busy. --- diff --git a/src/dns.cc b/src/dns.cc index 3c25d6ef63..44dd2a972c 100644 --- a/src/dns.cc +++ b/src/dns.cc @@ -1,6 +1,6 @@ /* - * $Id: dns.cc,v 1.88 2002/10/13 20:35:00 robertc Exp $ + * $Id: dns.cc,v 1.89 2002/11/15 13:28:33 hno Exp $ * * DEBUG: section 34 Dnsserver interface * AUTHOR: Harvest Derived @@ -98,7 +98,7 @@ dnsSubmit(const char *lookup, HLPCB * callback, void *data) if (squid_curtime - first_warn > 3 * 60) 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"); + callback(data, "$fail Temporary network problem, please retry later"); return; } first_warn = 0;