From: wessels <> Date: Fri, 9 Dec 2005 23:03:23 +0000 (+0000) Subject: During debugging I lowered the cbadata lock_count assertion threshold X-Git-Tag: SQUID_3_0_PRE4~461 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5130cd334611051c2311970596d99a2d1f63415;p=thirdparty%2Fsquid.git During debugging I lowered the cbadata lock_count assertion threshold so that it would trigger faster. The change should have never been committed. --- diff --git a/src/cbdata.cc b/src/cbdata.cc index 6a0ddabff0..adf2a48a7b 100644 --- a/src/cbdata.cc +++ b/src/cbdata.cc @@ -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++; }