summaryrefslogtreecommitdiff
path: root/lib/backupstore
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2013-09-19 23:06:00 +0000
committerChris Wilson <chris+github@qwirx.com>2013-09-19 23:06:00 +0000
commit93966139dbfc1ee289718087c4a232dd44d337f7 (patch)
tree4e60c64f64a107dedec05164516352c96a6ea034 /lib/backupstore
parent79947b433d9a8ed75d46ecbde69091a340e46683 (diff)
Report everything that increases mNumberErrorsFound as a BOX_ERROR.
Diffstat (limited to 'lib/backupstore')
-rw-r--r--lib/backupstore/BackupStoreInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/backupstore/BackupStoreInfo.cpp b/lib/backupstore/BackupStoreInfo.cpp
index 4f5b04e9..11697879 100644
--- a/lib/backupstore/BackupStoreInfo.cpp
+++ b/lib/backupstore/BackupStoreInfo.cpp
@@ -419,7 +419,7 @@ int BackupStoreInfo::ReportChangesTo(BackupStoreInfo& rOldInfo)
#define COMPARE(attribute) \
if (rOldInfo.Get ## attribute () != Get ## attribute ()) \
{ \
- BOX_WARNING(#attribute " changed from " << \
+ BOX_ERROR(#attribute " changed from " << \
rOldInfo.Get ## attribute () << " to " << \
Get ## attribute ()); \
numChanges++; \