]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
oops.. forgot /g in the substitution.
authorhno <>
Thu, 1 Feb 2001 04:46:04 +0000 (04:46 +0000)
committerhno <>
Thu, 1 Feb 2001 04:46:04 +0000 (04:46 +0000)
src/cbdata.cc

index 1f27072280dc98bfcd1a4a084c1fb4b048547988..ea1f661eeea936c5094ecc65cd06b18dba63cb85 100644 (file)
@@ -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