From: Alex Rousskov Date: Tue, 30 Sep 2008 19:48:54 +0000 (-0600) Subject: Removed extra ICAPConfig* parameter from depricated ICAP config functions. X-Git-Tag: SQUID_3_1_0_1~45^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c939dc70994a687ea25d1215bceb8febbf91d327;p=thirdparty%2Fsquid.git Removed extra ICAPConfig* parameter from depricated ICAP config functions. I have fixed this bug before, but in the generated file :-( --- 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");