]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
remove unused variables
authorwessels <>
Fri, 24 Oct 1997 07:28:42 +0000 (07:28 +0000)
committerwessels <>
Fri, 24 Oct 1997 07:28:42 +0000 (07:28 +0000)
src/store.cc

index 95a247607fd41bbe822ca033be336de738459e97..f0df0fe27e9d9c05fc8e36233921f89a40d915e3 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.305 1997/10/23 23:27:20 wessels Exp $
+ * $Id: store.cc,v 1.306 1997/10/24 01:28:42 wessels Exp $
  *
  * DEBUG: section 20    Storeage Manager
  * AUTHOR: Harvest Derived
@@ -1856,7 +1856,6 @@ storeCopy(const StoreEntry * e, off_t stateoffset, size_t maxSize, char *buf, si
 int
 storeClientWaiting(const StoreEntry * e)
 {
-    int i;
     MemObject *mem = e->mem_obj;
     store_client *sc;
     for (sc = mem->clients; sc; sc = sc->next) {
@@ -1881,11 +1880,9 @@ storeClientListSearch(const MemObject * mem, void *data)
 void
 storeClientListAdd(StoreEntry * e, void *data)
 {
-    int i;
     MemObject *mem = e->mem_obj;
     store_client **T;
     store_client *sc;
-    int oldsize;
     if (mem == NULL)
        mem = e->mem_obj = new_MemObject(urlClean(e->url));
     if (storeClientListSearch(mem, data) != NULL)
@@ -2339,7 +2336,6 @@ storePendingNClients(const StoreEntry * e)
     MemObject *mem = e->mem_obj;
     store_client *sc;
     store_client *nx = NULL;
-    int i;
     if (mem == NULL)
        return 0;
     for (sc = mem->clients; sc; sc = nx) {