summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-08-21 08:45:54 +0000
committerChris Wilson <chris+github@qwirx.com>2006-08-21 08:45:54 +0000
commit6c3dabe68da278f71b7c2c2b1da1858033504fce (patch)
treee5564ce5c8455b9e044308700cc3dd358d1f9995 /bin
parentb557bd2fa0256ba4cca41d205e7b0b69602f9f18 (diff)
* bin/bbackupd/BackupDaemon.cpp
- Remove duplicated exception handlers
Diffstat (limited to 'bin')
-rw-r--r--bin/bbackupd/BackupDaemon.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/bbackupd/BackupDaemon.cpp b/bin/bbackupd/BackupDaemon.cpp
index 2e80cd2d..13568249 100644
--- a/bin/bbackupd/BackupDaemon.cpp
+++ b/bin/bbackupd/BackupDaemon.cpp
@@ -2346,20 +2346,6 @@ bool BackupDaemon::SerializeStoreObjectInfo(int64_t aClientStoreMarker, box_time
StoreObjectInfoFile.c_str());
}
- DeleteAllLocations();
- catch(std::exception &e)
- {
- ::syslog(LOG_WARNING, "Requested store object info file '%s' "
- "not accessible or could not be created: %s",
- StoreObjectInfoFile.c_str(), e.what());
- }
- catch(...)
- {
- ::syslog(LOG_WARNING, "Requested store object info file '%s' "
- "not accessible or could not be created: "
- "unknown error", StoreObjectInfoFile.c_str());
- }
-
return created;
}