From: wessels <> Date: Tue, 18 Nov 1997 05:11:09 +0000 (+0000) Subject: up loopdetect threshold to 10 X-Git-Tag: SQUID_3_0_PRE1~4523 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ce2f56de9d21ff9118d9f7c22b213579aab2469;p=thirdparty%2Fsquid.git up loopdetect threshold to 10 --- diff --git a/src/store.cc b/src/store.cc index c74cc26869..1b16b177f4 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.343 1997/11/14 17:22:09 wessels Exp $ + * $Id: store.cc,v 1.344 1997/11/17 22:11:09 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -1720,7 +1720,7 @@ storeClientCopy2(StoreEntry * e, store_client * sc) MemObject *mem = e->mem_obj; size_t sz; static int loopdetect = 0; - assert(++loopdetect < 3); + assert(++loopdetect < 10); debug(20, 3) ("storeClientCopy2: %s\n", storeKeyText(e->key)); assert(callback != NULL); if (e->store_status == STORE_ABORTED) {