]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/ua_tree.c
tidy up make clean and ensure we have all the create/drop etc files
[bacula/bacula] / bacula / src / dird / ua_tree.c
index d914868c53d2f16f60276d9f7075348609c20792..089eaee403d8a096150f90d708eba3daa23f0373 100644 (file)
@@ -63,9 +63,9 @@ static struct cmdstruct commands[] = {
  { N_("help"),       helpcmd,      _("print help")},
  { N_("lsmark"),     lsmark,       _("list the marked files")},    
  { N_("ls"),         lscmd,        _("list current directory")},    
- { N_("mark"),       markcmd,      _("mark file for restoration")},
+ { N_("mark"),       markcmd,      _("mark file to be restored")},
  { N_("pwd"),        pwdcmd,       _("print current working directory")},
- { N_("unmark"),     unmarkcmd,    _("unmark file for restoration")},
+ { N_("unmark"),     unmarkcmd,    _("unmark file to be restored")},
  { N_("?"),          helpcmd,      _("print help")},    
             };
 #define comsize (sizeof(commands)/sizeof(struct cmdstruct))
@@ -209,7 +209,7 @@ static int set_extract(UAContext *ua, TREE_NODE *node, TREE_CTX *tree, bool extr
         decode_stat(fdbr.LStat, &statp, &LinkFI); /* decode stat pkt */
         /*
          * If we point to a hard linked file, traverse the tree to
-         * find that file, and mark it for restoration as well. It
+         * find that file, and mark it to be restored as well. It
          * must have the Link we just obtained and the same JobId.
          */
         if (LinkFI) {
@@ -260,7 +260,7 @@ static int countcmd(UAContext *ua, TREE_CTX *tree)
         }
       }
    }
-   bsendmsg(ua, "%d total files. %d marked for restoration.\n", total, num_extract);
+   bsendmsg(ua, "%d total files. %d marked to be restored.\n", total, num_extract);
    return 1;
 }
 
@@ -422,7 +422,7 @@ static int estimatecmd(UAContext *ua, TREE_CTX *tree)
         }
       }
    }
-   bsendmsg(ua, "%d total files; %d marked for restoration; %s bytes.\n", 
+   bsendmsg(ua, "%d total files; %d marked to be restored; %s bytes.\n", 
            total, num_extract, edit_uint64_with_commas(total_bytes, ec1));
    return 1;
 }