]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak handle skip code 900 in vss plugin
authorKern Sibbald <kern@sibbald.com>
Fri, 3 Sep 2010 17:29:05 +0000 (19:29 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Tue, 7 Sep 2010 19:07:05 +0000 (21:07 +0200)
bacula/src/win32/filed/plugins/root_node.c

index ae84f09d4d6259cc2ed19166af6915600a001cfc..d5ba41dbdedcb212703e10e2edc19b7c4c498433 100644 (file)
@@ -145,14 +145,15 @@ bRC
 root_node_t::endRestoreFile(exchange_fd_context_t *context)
 {
    _DebugMessage(0, "endRestoreFile_ROOT state = %d\n", state);
-   switch (state)
-   {
+   switch (state) {
    case 0:
       delete service_node;
       state = 1;
       return bRC_OK;
    case 1:
       return bRC_OK;
+   case 900:
+      return bRC_OK;
    default:
       _JobMessage(M_FATAL, "endRestore: invalid internal state %d", state);
       state = 999;