From 688386b20627430841cfa440bcfec507cabbcd36 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Fri, 3 Sep 2010 19:29:05 +0200 Subject: [PATCH] Tweak handle skip code 900 in vss plugin --- bacula/src/win32/filed/plugins/root_node.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bacula/src/win32/filed/plugins/root_node.c b/bacula/src/win32/filed/plugins/root_node.c index ae84f09d4d..d5ba41dbde 100644 --- a/bacula/src/win32/filed/plugins/root_node.c +++ b/bacula/src/win32/filed/plugins/root_node.c @@ -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; -- 2.39.5