[Box Backup-dev] COMMIT r513 - box/chris/general/lib/backupclient

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Sun, 26 Feb 2006 00:25:52 +0000 (GMT)


Author: chris
Date: 2006-02-26 00:25:44 +0000 (Sun, 26 Feb 2006)
New Revision: 513

Modified:
   box/chris/general/lib/backupclient/BackupClientRestore.h
Log:
* BackupClientRestore.h
- Additional return codes from BackupClientRestore when the parent directory
  of the restore target does not exist


Modified: box/chris/general/lib/backupclient/BackupClientRestore.h
===================================================================
--- box/chris/general/lib/backupclient/BackupClientRestore.h	2006-02-25 20:32:24 UTC (rev 512)
+++ box/chris/general/lib/backupclient/BackupClientRestore.h	2006-02-26 00:25:44 UTC (rev 513)
@@ -16,7 +16,9 @@
 {
 	Restore_Complete = 0,
 	Restore_ResumePossible = 1,
-	Restore_TargetExists = 2
+	Restore_TargetExists = 2,
+	Restore_TargetPathNotFound = 3,
+	Restore_UnknownError = 4,
 };
 
 int BackupClientRestore(BackupProtocolClient &rConnection, int64_t DirectoryID, const char *LocalDirectoryName,