From: Amos Jeffries Date: Sun, 19 Oct 2008 11:14:50 +0000 (+1300) Subject: Author: Mikio Kishi X-Git-Tag: SQUID_3_0_STABLE11_RC1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6bfd65ea8b959dd9a5d5bf2e164aa3ced770b72;p=thirdparty%2Fsquid.git Author: Mikio Kishi Fix regression: access.log request size tag (%>st) --- diff --git a/src/access_log.cc b/src/access_log.cc index 5ac1197615..cf3901402a 100644 --- a/src/access_log.cc +++ b/src/access_log.cc @@ -783,7 +783,7 @@ accessLogCustom(AccessLogEntry * al, customlog * log) break; case LFT_REQUEST_SIZE_TOTAL: - outint = al->cache.requestSize; + outoff = al->cache.requestSize; dooff = 1; break;