[Box Backup-commit] COMMIT r2394 - box/trunk/bin/bbackupd

boxbackup-dev at boxbackup.org boxbackup-dev at boxbackup.org
Mon Dec 1 00:59:50 GMT 2008


Author: chris
Date: 2008-12-01 00:59:49 +0000 (Mon, 01 Dec 2008)
New Revision: 2394

Modified:
   box/trunk/bin/bbackupd/BackupClientDirectoryRecord.cpp
Log:
Fix missing parentheses on stored file ID messages.


Modified: box/trunk/bin/bbackupd/BackupClientDirectoryRecord.cpp
===================================================================
--- box/trunk/bin/bbackupd/BackupClientDirectoryRecord.cpp	2008-11-30 22:25:27 UTC (rev 2393)
+++ box/trunk/bin/bbackupd/BackupClientDirectoryRecord.cpp	2008-12-01 00:59:49 UTC (rev 2394)
@@ -1086,7 +1086,7 @@
 			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 @@
 					// 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 */);				
 				}
 			}




More information about the Boxbackup-commit mailing list