]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Alex Rousskov <rousskov@measurement-factory.com>
authorwessels <>
Tue, 8 May 2007 01:54:58 +0000 (01:54 +0000)
committerwessels <>
Tue, 8 May 2007 01:54:58 +0000 (01:54 +0000)
Bug #1950: cachemgr requests for auth helper stats can crash Squid

Also need to update unit tests after changing  the
helperStats() and helperStatefulStats() interfaces.

src/tests/stub_helper.cc

index 6a7be44e0f538528646d23f0bd1ebf50418608e5..46f71d7cd192eea95abdeb54bc177ec532531f9c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: stub_helper.cc,v 1.2 2006/08/21 00:50:47 robertc Exp $
+ * $Id: stub_helper.cc,v 1.3 2007/05/07 19:54:58 wessels Exp $
  *
  * DEBUG: section 84    Helper process maintenance
  * AUTHOR: Robert Collins
@@ -72,13 +72,13 @@ helperCreate(const char *name)
 }
 
 void
-helperStats(StoreEntry * sentry, helper * hlp)
+helperStats(StoreEntry * sentry, helper * hlp, const char *label)
 {
     fatal("Not implemented");
 }
 
 void
-helperStatefulStats(StoreEntry * sentry, statefulhelper * hlp)
+helperStatefulStats(StoreEntry * sentry, statefulhelper * hlp, const char *label)
 {
     fatal("Not implemented");
 }