]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Display copies only if "copies" keyword is used
authorEric Bollengier <eric@eb.homelinux.org>
Sun, 21 Dec 2008 08:44:43 +0000 (08:44 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sun, 21 Dec 2008 08:44:43 +0000 (08:44 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8213 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/ua_restore.c

index 90eeb5184aedda6707495dc012259ff420194f10..2e55a404051f0119f6a3fc1732ded71fe3d22065 100644 (file)
@@ -1268,8 +1268,11 @@ static bool select_backups_before_date(UAContext *ua, RESTORE_CTX *rx, char *dat
    }
 
    if (rx->JobIds[0] != 0) {
-      /* Display a list of all copies */
-      db_list_copies_records(ua->jcr, ua->db, 0, rx->JobIds, prtit, ua, HORZ_LIST);
+      if (find_arg(ua, NT_("copies")) > 0) {
+         /* Display a list of all copies */
+         db_list_copies_records(ua->jcr, ua->db, 0, rx->JobIds, 
+                                prtit, ua, HORZ_LIST);
+      }
       /* Display a list of Jobs selected for this restore */
       db_list_sql_query(ua->jcr, ua->db, uar_list_temp, prtit, ua, 1, HORZ_LIST);
       ok = true;