From: Christos Tsantilas Date: Wed, 28 Jul 2010 07:40:06 +0000 (+0300) Subject: Add a missing break. Currently does not have any effect but it may X-Git-Tag: SQUID_3_2_0_1~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=911257e5b12a08f317891fceae9bf7956bc0d3c1;p=thirdparty%2Fsquid.git Add a missing break. Currently does not have any effect but it may cause problems in the feature. --- diff --git a/src/log/access_log.cc b/src/log/access_log.cc index 937afa66ee..9a7968930f 100644 --- a/src/log/access_log.cc +++ b/src/log/access_log.cc @@ -1174,6 +1174,7 @@ accessLogCustom(AccessLogEntry * al, customlog * log) case LFT_REPLY_SIZE_HEADERS: outint = al->cache.replyHeadersSize; doint = 1; + break; /*case LFT_REPLY_SIZE_BODY: */ /*case LFT_REPLY_SIZE_BODY_NO_TE: */