From: rousskov <> Date: Thu, 12 Mar 1998 07:28:53 +0000 (+0000) Subject: - Reduced the amout of tmp header debugging. X-Git-Tag: SQUID_3_0_PRE1~3861 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63efe8f9b78da50f4701a4f26c9dd0867fd2b42f;p=thirdparty%2Fsquid.git - Reduced the amout of tmp header debugging. --- diff --git a/src/HttpHeaderTools.cc b/src/HttpHeaderTools.cc index f25d05836b..61ddc5301d 100644 --- a/src/HttpHeaderTools.cc +++ b/src/HttpHeaderTools.cc @@ -1,5 +1,5 @@ /* - * $Id: HttpHeaderTools.cc,v 1.3 1998/03/11 22:18:45 rousskov Exp $ + * $Id: HttpHeaderTools.cc,v 1.4 1998/03/12 00:28:53 rousskov Exp $ * * DEBUG: section 66 HTTP Header Tools * AUTHOR: Alex Rousskov @@ -193,7 +193,7 @@ void httpHeaderTestParser(const char *hstr) MemBuf mb; assert(hstr); /* do not print too much, kludge */ - if (bug_count > 100 && (lrand48() % bug_count) > 50L) + if (bug_count > 50 && (lrand48() % bug_count) > 25L) return; /* skip start line if any */ if (!strncasecmp(hstr, "HTTP/", 5)) {