]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Add message before copies list
authorEric Bollengier <eric@eb.homelinux.org>
Tue, 17 Feb 2009 15:46:02 +0000 (15:46 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Tue, 17 Feb 2009 15:46:02 +0000 (15:46 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8461 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/sql_list.c

index a7feae7b54fe1347cbc6a04f75df52ea91e36cc5..df933acf7bdc6c553fe91d95aa234b67447b75b8 100644 (file)
@@ -271,7 +271,15 @@ void db_list_copies_records(JCR *jcr, B_DB *mdb, uint32_t limit, char *JobIds,
       goto bail_out;
    }
 
-   list_result(jcr, mdb, sendit, ctx, type);
+   if (mdb->result && sql_num_rows(mdb)) {
+      if (JobIds && JobIds[0]) {
+         sendit(ctx, _("These JobIds have copies as follows:\n"));
+      } else {
+         sendit(ctx, _("The catalog contains copies as follows:\n"));
+      }
+
+      list_result(jcr, mdb, sendit, ctx, type);
+   }
 
    sql_free_result(mdb);