]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Removed a unused variable
authorhno <>
Tue, 29 Jan 2002 00:51:27 +0000 (00:51 +0000)
committerhno <>
Tue, 29 Jan 2002 00:51:27 +0000 (00:51 +0000)
src/http.cc

index c72ff2647d0baac1e703b0d1bb234fab9697aa7c..7a8ffcb25e5156d5a3d1aaee53f7486787c52506 100644 (file)
@@ -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);
 }