]> git.sur5r.net Git - bacula/bacula/commitdiff
Ignore unknown dot commands in restore tree code
authorKern Sibbald <kern@sibbald.com>
Sun, 31 Oct 2010 13:46:26 +0000 (14:46 +0100)
committerKern Sibbald <kern@sibbald.com>
Sun, 31 Oct 2010 13:47:29 +0000 (14:47 +0100)
bacula/src/dird/ua_tree.c

index 7d08b564106fdc2dfdcad822eaf630ad98d40b9f..389d86861d810c8e9a92fa19a531b5e2a03779ac 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2002-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2002-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -33,7 +33,6 @@
  *
  *     Kern Sibbald, July MMII
  *
- *   Version $Id$
  */
 
 #include "bacula.h"
@@ -151,6 +150,10 @@ bool user_select_files_from_tree(TREE_CTX *tree)
             break;
          }
       if (!found) {
+         if (*ua->argk[0] == '.') {
+            /* Some unknow dot command -- probably .messages, ignore it */
+            continue;
+         }
          ua->warning_msg(_("Invalid command \"%s\". Enter \"done\" to exit.\n"), ua->cmd);
          if (ua->api) user->signal(BNET_CMD_FAILED);
          continue;