]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
up loopdetect threshold to 10
authorwessels <>
Tue, 18 Nov 1997 05:11:09 +0000 (05:11 +0000)
committerwessels <>
Tue, 18 Nov 1997 05:11:09 +0000 (05:11 +0000)
src/store.cc

index c74cc2686911b12081c0fb715c2959e1a74316c4..1b16b177f4dc71116a47ce69cc9f3684d9b668bb 100644 (file)
@@ -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) {