X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fdird%2Fua_prune.c;h=cccd7c86205654c9befa7bf32eef32f5d08d694b;hb=7256804a7dd3cd3b550e1467875a27c5f425f3ae;hp=cd6684a3f1e4a546f73500ded3a325ad17b382f3;hpb=5ea4fcd2799ef47ce904ab051cde75bea41c0339;p=bacula%2Fbacula diff --git a/bacula/src/dird/ua_prune.c b/bacula/src/dird/ua_prune.c index cd6684a3f1..cccd7c8620 100644 --- a/bacula/src/dird/ua_prune.c +++ b/bacula/src/dird/ua_prune.c @@ -270,7 +270,7 @@ int prune_files(UAContext *ua, CLIENT *client) del.JobId = (JobId_t *)malloc(sizeof(JobId_t) * del.max_ids); - /* Now process same set but making delete list */ + /* Now process same set but making a delete list */ db_sql_query(ua->db, query, file_delete_handler, (void *)&del); for (i=0; i < del.num_ids; i++) { @@ -286,7 +286,7 @@ int prune_files(UAContext *ua, CLIENT *client) * Now mark Job as having files purged. This is necessary to * avoid having too many Jobs to process in future prunings. If * we don't do this, the number of JobId's in our in memory list - * will grow very large. + * could grow very large. */ Mmsg(&query, upd_Purged, del.JobId[i]); db_sql_query(ua->db, query, NULL, (void *)NULL); @@ -415,7 +415,7 @@ int prune_jobs(UAContext *ua, CLIENT *client, int JobType) switch (JobType) { case JT_ADMIN: case JT_BACKUP: - Mmsg(&query, select_backup_del, ed1, cr.ClientId); + Mmsg(&query, select_backup_del, ed1, ed1, cr.ClientId); break; case JT_RESTORE: Mmsg(&query, select_restore_del, ed1, cr.ClientId); @@ -501,7 +501,7 @@ int prune_volume(UAContext *ua, MEDIA_DBR *mr) if (cnt.count == 0) { if (ua->verbose) { - bsendmsg(ua, "There are no Jobs associated with Volume %s. Marking it purged.\n", + bsendmsg(ua, "There are no Jobs associated with Volume \"%s\". Marking it purged.\n", mr->VolumeName); } stat = mark_media_purged(ua, mr); @@ -558,7 +558,7 @@ int prune_volume(UAContext *ua, MEDIA_DBR *mr) free(del.JobId); } if (ua->verbose && del.num_del != 0) { - bsendmsg(ua, _("Pruned %d %s on Volume %s from catalog.\n"), del.num_del, + bsendmsg(ua, _("Pruned %d %s on Volume \"%s\" from catalog.\n"), del.num_del, del.num_del == 1 ? "Job" : "Jobs", mr->VolumeName); }