summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-07-26 22:00:22 +0000
committerChris Wilson <chris+github@qwirx.com>2007-07-26 22:00:22 +0000
commit5c3881a66cb2932f66972a17b28cee3c3564b707 (patch)
tree1bbb6a0daa1da0d3d88817f71cab3ebba5bdd5b9
parent243823b91f9bf4eb5f60dbce575904cd20a237ef (diff)
MSVC compile fix, thanks Gary. (refs #3, merges [1666])
-rw-r--r--bin/bbackupd/BackupDaemon.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/bbackupd/BackupDaemon.h b/bin/bbackupd/BackupDaemon.h
index 14782859..7df62c95 100644
--- a/bin/bbackupd/BackupDaemon.h
+++ b/bin/bbackupd/BackupDaemon.h
@@ -229,13 +229,15 @@ public:
const BackupClientDirectoryRecord* pDirRecord,
const std::string& rLocalPath)
{
- BOX_WARNING("Ignored directory: " << rLocalPath << ": "
#ifdef WIN32
- "is an NTFS junction/reparse point; "
+ BOX_WARNING("Ignored directory: " << rLocalPath <<
+ ": is an NTFS junction/reparse point; create "
+ "a new location if you want to back it up");
#else
- "is a mount point; "
+ BOX_WARNING("Ignored directory: " << rLocalPath <<
+ ": is a mount point; create a new location "
+ "if you want to back it up");
#endif
- "create a new location if you want to back it up");
}
virtual void NotifyFileExcluded(
const BackupClientDirectoryRecord* pDirRecord,