From: hno <> Date: Tue, 29 Jan 2002 00:51:27 +0000 (+0000) Subject: Removed a unused variable X-Git-Tag: SQUID_3_0_PRE1~1198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a114cc1ad4724288858b8b699ae6cdd48a1d12d;p=thirdparty%2Fsquid.git Removed a unused variable --- diff --git a/src/http.cc b/src/http.cc index c72ff2647d..7a8ffcb25e 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.385 2001/12/28 02:39:42 hno Exp $ + * $Id: http.cc,v 1.386 2002/01/28 17:51:27 hno Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -327,7 +327,6 @@ httpCachableReply(HttpStateData * httpState) const char * httpMakeVaryMark(request_t * request, HttpReply * reply) { - int ok = 1; String vary, hdr; const char *pos = NULL; const char *item; @@ -375,7 +374,7 @@ httpMakeVaryMark(request_t * request, HttpReply * reply) } stringClean(&vary); #endif - debug(11, 3) ("httpMakeVaryMark: %d / %s\n", ok, strBuf(vstr)); + debug(11, 3) ("httpMakeVaryMark: %s\n", strBuf(vstr)); return strBuf(vstr); }