summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-12-01 00:59:49 +0000
committerChris Wilson <chris+github@qwirx.com>2008-12-01 00:59:49 +0000
commit302cb4a51ed03884279f5013805f32ba21da1243 (patch)
tree676a866820bda7799d8ec04787a7542194aa50af
parent78158da871b47dda96c328b519cf4b11816ec066 (diff)
Fix missing parentheses on stored file ID messages.
-rw-r--r--bin/bbackupd/BackupClientDirectoryRecord.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bbackupd/BackupClientDirectoryRecord.cpp b/bin/bbackupd/BackupClientDirectoryRecord.cpp
index d8433407..d6ce1a72 100644
--- a/bin/bbackupd/BackupClientDirectoryRecord.cpp
+++ b/bin/bbackupd/BackupClientDirectoryRecord.cpp
@@ -1086,7 +1086,7 @@ bool BackupClientDirectoryRecord::UpdateItems(
if(latestObjectID != 0)
{
// Use this one
- BOX_TRACE("Storing uploaded file ID " << inodeNum << " (" << filename << " in ID map as object " << latestObjectID << " with parent " << mObjectID << " (" << rLocalPath << ")");
+ BOX_TRACE("Storing uploaded file ID " << inodeNum << " (" << filename << ") in ID map as object " << latestObjectID << " with parent " << mObjectID << " (" << rLocalPath << ")");
idMap.AddToMap(inodeNum, latestObjectID, mObjectID /* containing directory */);
}
else
@@ -1110,7 +1110,7 @@ bool BackupClientDirectoryRecord::UpdateItems(
// into it. However, in a long running process this may happen occasionally and
// not indicate anything wrong.
// Run the release version for real life use, where this check is not made.
- BOX_TRACE("Storing found file ID " << inodeNum << " (" << filename << " in ID map as object " << latestObjectID << " with parent " << mObjectID << " (" << rLocalPath << ")");
+ BOX_TRACE("Storing found file ID " << inodeNum << " (" << filename << ") in ID map as object " << latestObjectID << " with parent " << mObjectID << " (" << rLocalPath << ")");
idMap.AddToMap(inodeNum, objid, mObjectID /* containing directory */);
}
}