From: Henrik Nordstrom Date: Sat, 18 Oct 2008 14:50:34 +0000 (+0200) Subject: Author: Mikio Kishi X-Git-Tag: SQUID_3_2_0_1~1393 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af5294a7e38855bf026fd825b59f36148c8ed5f7;p=thirdparty%2Fsquid.git Author: Mikio Kishi Fix access.log request size tag (%>st) --- diff --git a/src/access_log.cc b/src/access_log.cc index d1fc5c643f..f6cec335cd 100644 --- a/src/access_log.cc +++ b/src/access_log.cc @@ -772,7 +772,7 @@ accessLogCustom(AccessLogEntry * al, customlog * log) break; case LFT_REQUEST_SIZE_TOTAL: - outint = al->cache.requestSize; + outoff = al->cache.requestSize; dooff = 1; break;