]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
During debugging I lowered the cbadata lock_count assertion threshold
authorwessels <>
Fri, 9 Dec 2005 23:03:23 +0000 (23:03 +0000)
committerwessels <>
Fri, 9 Dec 2005 23:03:23 +0000 (23:03 +0000)
so that it would trigger faster.  The change should have never been
committed.

src/cbdata.cc

index 6a0ddabff030d1b1467714b9127ea0de9d8b1640..adf2a48a7b127ae5435f104f568e2ea22714cbda 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: cbdata.cc,v 1.66 2005/12/08 20:08:46 wessels Exp $
+ * $Id: cbdata.cc,v 1.67 2005/12/09 16:03:23 wessels Exp $
  *
  * DEBUG: section 45    Callback Data Registry
  * ORIGINAL AUTHOR: Duane Wessels
@@ -364,7 +364,7 @@ cbdataInternalLock(const void *p)
 
     c->check(__LINE__);
 
-    assert(c->locks < 655);
+    assert(c->locks < 65535);
 
     c->locks++;
 }