From 51999578bf1a7fa0ee6f2ebe3987cb1390daf42b Mon Sep 17 00:00:00 2001 From: orbiter Date: Fri, 7 Apr 2006 17:13:09 +0000 Subject: [PATCH] fixed bug created with last commit of borg git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2013 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/CacheAdmin_p.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/CacheAdmin_p.java b/htroot/CacheAdmin_p.java index 7a84721f9..7434a343a 100644 --- a/htroot/CacheAdmin_p.java +++ b/htroot/CacheAdmin_p.java @@ -179,7 +179,7 @@ public class CacheAdmin_p { } } - prop.put("cachesize", Long.toString(switchboard.cacheManager.currCacheSize/1024)); + prop.put("cachesize", Long.toString(switchboard.cacheManager.curCacheSize/1024)); prop.put("cachemax", Long.toString(switchboard.cacheManager.maxCacheSize/1024)); prop.put("path", path.toString()); prop.put("info_info", info.toString());