]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix #804 about misleading message with the purge command
authorEric Bollengier <eric@baculasystems.com>
Thu, 10 Sep 2015 07:20:42 +0000 (09:20 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 19 Dec 2015 08:05:39 +0000 (09:05 +0100)
bacula/src/dird/ua_purge.c

index 551d80e02f52075f9f708401ebcb06828f74b271..31b4b7e4b465a46077754bd2592673babb98ced8 100644 (file)
@@ -209,11 +209,11 @@ static int purge_files_from_client(UAContext *ua, CLIENT *client)
 
    purge_files_from_job_list(ua, del);
 
-   if (del.num_ids == 0) {
+   if (del.num_del == 0) {
       ua->warning_msg(_("No Files found for client %s to purge from %s catalog.\n"),
          client->name(), client->catalog->name());
    } else {
-      ua->info_msg(_("Files for %d Jobs for client \"%s\" purged from %s catalog.\n"), del.num_ids,
+      ua->info_msg(_("Files for %d Jobs for client \"%s\" purged from %s catalog.\n"), del.num_del,
          client->name(), client->catalog->name());
    }
 
@@ -259,11 +259,11 @@ static int purge_jobs_from_client(UAContext *ua, CLIENT *client)
 
    purge_job_list_from_catalog(ua, del);
 
-   if (del.num_ids == 0) {
+   if (del.num_del == 0) {
       ua->warning_msg(_("No Files found for client %s to purge from %s catalog.\n"),
          client->name(), client->catalog->name());
    } else {
-      ua->info_msg(_("%d Jobs for client %s purged from %s catalog.\n"), del.num_ids,
+      ua->info_msg(_("%d Jobs for client %s purged from %s catalog.\n"), del.num_del,
          client->name(), client->catalog->name());
    }