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

subversion at boxbackup.org subversion at boxbackup.org
Thu Feb 2 23:36:13 GMT 2012


Author: chris
Date: 2012-02-02 23:36:13 +0000 (Thu, 02 Feb 2012)
New Revision: 3083

Modified:
   box/trunk/bin/bbackupd/BackupDaemon.cpp
Log:
Fix compile error, thanks to James and Buildbot :)


Modified: box/trunk/bin/bbackupd/BackupDaemon.cpp
===================================================================
--- box/trunk/bin/bbackupd/BackupDaemon.cpp	2012-02-02 22:20:29 UTC (rev 3082)
+++ box/trunk/bin/bbackupd/BackupDaemon.cpp	2012-02-02 23:36:13 UTC (rev 3083)
@@ -2296,10 +2296,10 @@
 				if(::statfs(pLoc->mPath.c_str(), &s) != 0)
 #endif // HAVE_STRUCT_STATVFS_F_MNTONNAME
 				{
-					BOX_THROW_SYS_ERROR("Failed to stat "
-						"path '" << pLoc->mPath <<
-						"' for location '" <<
-						pLoc->mName << "'");
+					THROW_SYS_ERROR("Failed to stat path "
+						"'" << pLoc->mPath << "' "
+						"for location "
+						"'" << pLoc->mName << "'");
 				}
 
 				// Where the filesystem is mounted




More information about the Boxbackup-commit mailing list