From: hno <> Date: Fri, 1 Jun 2001 15:06:57 +0000 (+0000) Subject: Oops.. forgot to add prototypes needed when moving common_cachedir_options X-Git-Tag: SQUID_3_0_PRE1~1499 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14f138942804d1da775dbab455675004a05c13b3;p=thirdparty%2Fsquid.git Oops.. forgot to add prototypes needed when moving common_cachedir_options up earlier in the file.. --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index f9557b1c89..cacabe44a2 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,6 +1,6 @@ /* - * $Id: cache_cf.cc,v 1.383 2001/06/01 06:51:16 hno Exp $ + * $Id: cache_cf.cc,v 1.384 2001/06/01 09:06:57 hno Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -56,6 +56,10 @@ static const char *const B_GBYTES_STR = "GB"; static const char *const list_sep = ", \t\n\r"; +static void parse_cachedir_option_readonly(SwapDir * sd, const char *option, const char *value, int reconfiguring); +static void dump_cachedir_option_readonly(StoreEntry * e, const char *option, SwapDir * sd); +static void parse_cachedir_option_maxsize(SwapDir * sd, const char *option, const char *value, int reconfiguring); +static void dump_cachedir_option_maxsize(StoreEntry * e, const char *option, SwapDir * sd); static struct cache_dir_option common_cachedir_options[] = { {"read-only", parse_cachedir_option_readonly, dump_cachedir_option_readonly},