From: wessels <> Date: Sat, 22 Jul 2000 23:56:55 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~1884 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7928b8df48adc4bf4f781d149b4bb764aa041689;p=thirdparty%2Fsquid.git DW: - missing newline on RCODE table output --- diff --git a/src/dns_internal.cc b/src/dns_internal.cc index a30c4b7360..d4aa92b478 100644 --- a/src/dns_internal.cc +++ b/src/dns_internal.cc @@ -1,6 +1,6 @@ /* - * $Id: dns_internal.cc,v 1.31 2000/07/18 06:16:41 wessels Exp $ + * $Id: dns_internal.cc,v 1.32 2000/07/22 17:56:55 wessels Exp $ * * DEBUG: section 78 DNS lookups; interacts with lib/rfc1035.c * AUTHOR: Duane Wessels @@ -194,6 +194,7 @@ idnsStats(StoreEntry * sentry) storeAppendPrintf(sentry, "RCODE"); for (i = 0; i < MAX_ATTEMPT; i++) storeAppendPrintf(sentry, " ATTEMPT%d", i + 1); + storeAppendPrintf(sentry, "\n"); for (j = 0; j < MAX_RCODE; j++) { storeAppendPrintf(sentry, "%5d", j); for (i = 0; i < MAX_ATTEMPT; i++)