From: wessels <> Date: Tue, 8 May 2007 01:54:58 +0000 (+0000) Subject: Author: Alex Rousskov X-Git-Tag: SQUID_3_0_PRE6~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=53fcd69917464975d8f2e7853d4eebdab1b99126;p=thirdparty%2Fsquid.git Author: Alex Rousskov Bug #1950: cachemgr requests for auth helper stats can crash Squid Also need to update unit tests after changing the helperStats() and helperStatefulStats() interfaces. --- diff --git a/src/tests/stub_helper.cc b/src/tests/stub_helper.cc index 6a7be44e0f..46f71d7cd1 100644 --- a/src/tests/stub_helper.cc +++ b/src/tests/stub_helper.cc @@ -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"); }