# HG changeset patch
# User Sebastien Jodogne <s.jodogne@gmail.com>
# Date 1354288206 -3600
# Node ID 30887f3593dd5ab7822569268a43b9b6ced15586
# Parent  e4148b0ab1d05c42cd7e02e9ebf4764b8bc20405
rename

diff -r e4148b0ab1d0 -r 30887f3593dd OrthancServer/ServerIndex.cpp
--- a/OrthancServer/ServerIndex.cpp	Fri Nov 30 16:09:24 2012 +0100
+++ b/OrthancServer/ServerIndex.cpp	Fri Nov 30 16:10:06 2012 +0100
@@ -357,9 +357,9 @@
 
     uint64_t cs = db_->GetTotalCompressedSize();
     uint64_t us = db_->GetTotalUncompressedSize();
-    target["TotalDiskSize"] = boost::lexical_cast<std::string>(cs);
+    target["TotalDiskSpace"] = boost::lexical_cast<std::string>(cs);
     target["TotalUncompressedSize"] = boost::lexical_cast<std::string>(us);
-    target["TotalDiskSizeMB"] = boost::lexical_cast<unsigned int>(cs / (1024llu * 1024llu));
+    target["TotalDiskSpaceMB"] = boost::lexical_cast<unsigned int>(cs / (1024llu * 1024llu));
     target["TotalUncompressedSizeMB"] = boost::lexical_cast<unsigned int>(us / (1024llu * 1024llu));
 
     target["CountPatients"] = static_cast<unsigned int>(db_->GetResourceCount(ResourceType_Patient));