From c939dc70994a687ea25d1215bceb8febbf91d327 Mon Sep 17 00:00:00 2001 From: Alex Rousskov Date: Tue, 30 Sep 2008 13:48:54 -0600 Subject: [PATCH] Removed extra ICAPConfig* parameter from depricated ICAP config functions. I have fixed this bug before, but in the generated file :-( --- src/cache_cf.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 5d5d585036..c6f6a3f114 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -74,8 +74,8 @@ static void parse_adaptation_access_type(); static void parse_icap_service_type(ICAPConfig *); static void dump_icap_service_type(StoreEntry *, const char *, const ICAPConfig &); static void free_icap_service_type(ICAPConfig *); -static void parse_icap_class_type(ICAPConfig *); -static void parse_icap_access_type(ICAPConfig *); +static void parse_icap_class_type(); +static void parse_icap_access_type(); #endif @@ -3520,7 +3520,7 @@ dump_icap_service_type(StoreEntry * entry, const char *name, const ICAPConfig &c } static void -parse_icap_class_type(ICAPConfig *) +parse_icap_class_type() { debugs(93, 0, "WARNING: 'icap_class' is depricated. " << "Use 'adaptation_service_set' instead"); @@ -3528,7 +3528,7 @@ parse_icap_class_type(ICAPConfig *) } static void -parse_icap_access_type(ICAPConfig *) +parse_icap_access_type() { debugs(93, 0, "WARNING: 'icap_access' is depricated. " << "Use 'adaptation_access' instead"); -- 2.47.3