]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Oops.. forgot to add prototypes needed when moving common_cachedir_options
authorhno <>
Fri, 1 Jun 2001 15:06:57 +0000 (15:06 +0000)
committerhno <>
Fri, 1 Jun 2001 15:06:57 +0000 (15:06 +0000)
up earlier in the file..

src/cache_cf.cc

index f9557b1c89655414f827fea02e55b2b7438b01c0..cacabe44a2cbeb9d60913521054ee17e39315133 100644 (file)
@@ -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},