From: wessels <> Date: Thu, 20 Jan 2000 04:57:30 +0000 (+0000) Subject: DW X-Git-Tag: SQUID_3_0_PRE1~2072 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05f18bd0acbfafc13ef15168d742ed2051b5ba8f;p=thirdparty%2Fsquid.git DW - http->log_type is getting clobbered here. This screwed up stats for quite a long time probably. --- diff --git a/src/client_side.cc b/src/client_side.cc index e109dd54a0..57436b6aca 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.469 2000/01/14 08:37:05 wessels Exp $ + * $Id: client_side.cc,v 1.470 2000/01/19 21:57:30 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -1963,8 +1963,7 @@ clientProcessRequest(clientHttpRequest * http) clientCacheHit, http); } else { - /* MISS CASE */ - http->log_type = LOG_TCP_MISS; + /* MISS CASE, http->log_type is already set! */ clientProcessMiss(http); } }