From: wessels <> Date: Fri, 24 Oct 1997 07:28:42 +0000 (+0000) Subject: remove unused variables X-Git-Tag: SQUID_3_0_PRE1~4715 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ae501616d1428c770576603e239504c3a26c177f;p=thirdparty%2Fsquid.git remove unused variables --- diff --git a/src/store.cc b/src/store.cc index 95a247607f..f0df0fe27e 100644 --- a/src/store.cc +++ b/src/store.cc @@ -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) {