From: hno <> Date: Mon, 26 May 2003 02:29:24 +0000 (+0000) Subject: Clean up if "Setting maxBodySize to.." debug message to show correct context X-Git-Tag: SQUID_3_0_PRE1~158 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=43cb430efac8a063cd6e7b7e3fbc0f77373f86dd;p=thirdparty%2Fsquid.git Clean up if "Setting maxBodySize to.." debug message to show correct context --- diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index b003758e90..285d7e6461 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.cc,v 1.52 2003/05/25 02:24:05 robertc Exp $ + * $Id: client_side_reply.cc,v 1.53 2003/05/25 20:29:24 hno Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -1823,10 +1823,10 @@ clientReplyContext::buildMaxBodySize(HttpReply * reply) ch->matchAclListFast(l->aclList); if (ch->finished()) { - if (l->size != static_cast(-1)) + if (l->size != static_cast(-1)) { + debug(58, 3) ("clientReplyContext: Setting maxBodySize to %ld\n", (long int) l->size); http->maxReplyBodySize(l->size); - - debug(58, 3) ("httpReplyBodyBuildSize: Setting maxBodySize to %ld\n", (long int) http->maxReplyBodySize()); + } break; }