From: wessels <> Date: Wed, 28 Mar 2001 23:33:56 +0000 (+0000) Subject: DW failed algebra X-Git-Tag: SQUID_3_0_PRE1~1558 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5b72fe7f43dea9f0e3d2ed7e57fdca3dd17eeef;p=thirdparty%2Fsquid.git DW failed algebra --- diff --git a/src/store_dir.cc b/src/store_dir.cc index 1d50285a2b..b336cb606d 100644 --- a/src/store_dir.cc +++ b/src/store_dir.cc @@ -1,6 +1,6 @@ /* - * $Id: store_dir.cc,v 1.129 2001/03/28 14:45:40 wessels Exp $ + * $Id: store_dir.cc,v 1.130 2001/03/28 16:33:56 wessels Exp $ * * DEBUG: section 47 Store Directory Routines * AUTHOR: Duane Wessels @@ -493,7 +493,7 @@ storeDirGetBlkSize(const char *path, int *blksize) /* * Sanity check; make sure we have a meaningful value. */ - if (*blksize > 512) + if (*blksize < 512) *blksize = 2048; return 0; }