From: rousskov <> Date: Fri, 6 Mar 1998 00:43:32 +0000 (+0000) Subject: - Cahnged debug message that reports cache size to say "KB" instead of "MB". X-Git-Tag: SQUID_3_0_PRE1~3910 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d61b4908431c7ce4f047a18d4357498d11b05181;p=thirdparty%2Fsquid.git - Cahnged debug message that reports cache size to say "KB" instead of "MB". --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 541ae61f3d..6ce2095ffa 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,6 +1,6 @@ /* - * $Id: cache_cf.cc,v 1.255 1998/03/03 00:31:01 rousskov Exp $ + * $Id: cache_cf.cc,v 1.256 1998/03/05 17:43:32 rousskov Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -608,10 +608,10 @@ parse_cachedir(cacheSwap * swap) if (!strcmp(path, tmp->path)) { /* just reconfigure it */ if (size == tmp->max_size) - debug(3, 1) ("Cache dir '%s' size remains unchanged at %d MB\n", + debug(3, 1) ("Cache dir '%s' size remains unchanged at %d KB\n", path, size); else - debug(3, 1) ("Cache dir '%s' size changed to %d MB\n", + debug(3, 1) ("Cache dir '%s' size changed to %d KB\n", path, size); tmp->max_size = size; if (tmp->read_only != readonly)