From: wessels <> Date: Thu, 29 Aug 1996 23:57:37 +0000 (+0000) Subject: fix config parsing of swap_low X-Git-Tag: SQUID_3_0_PRE1~5880 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c6c6f75a05005c41ec8a1fe1da714f24015113b;p=thirdparty%2Fsquid.git fix config parsing of swap_low --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 59cb8fa7a2..e67144702c 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,5 +1,5 @@ /* - * $Id: cache_cf.cc,v 1.79 1996/08/29 16:55:47 wessels Exp $ + * $Id: cache_cf.cc,v 1.80 1996/08/29 17:57:37 wessels Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -1135,7 +1135,7 @@ int parseConfigFile(file_name) parseIntegerValue(&Config.Swap.highWaterMark); else if (!strcmp(token, "cache_swap_low")) - parseIntegerValue(&Config.Swap.highWaterMark); + parseIntegerValue(&Config.Swap.lowWaterMark); else if (!strcmp(token, "cache_mem_high")) parseIntegerValue(&Config.Mem.highWaterMark);