From: hno <> Date: Thu, 1 Feb 2001 04:46:04 +0000 (+0000) Subject: oops.. forgot /g in the substitution. X-Git-Tag: SQUID_3_0_PRE1~1622 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8f91c1ab93e6101df81cc62d17b26e79e8da1a10;p=thirdparty%2Fsquid.git oops.. forgot /g in the substitution. --- diff --git a/src/cbdata.cc b/src/cbdata.cc index 1f27072280..ea1f661eee 100644 --- a/src/cbdata.cc +++ b/src/cbdata.cc @@ -1,6 +1,6 @@ /* - * $Id: cbdata.cc,v 1.36 2001/01/31 21:44:42 hno Exp $ + * $Id: cbdata.cc,v 1.37 2001/01/31 21:46:04 hno Exp $ * * DEBUG: section 45 Callback Data Registry * ORIGINAL AUTHOR: Duane Wessels @@ -160,7 +160,7 @@ cbdataInternalAlloc(cbdata_type type, CBDUNL * free_func) assert(type > 0 && type < cbdata_types); p = memPoolAlloc(cbdata_memory_pool[type]); p->type = type; - p->free_func = unlock_func; + p->free_func = free_func; p->valid = 1; p->locks = 0; #if CBDATA_DEBUG