From: Eric Bollengier Date: Thu, 21 Jan 2010 11:02:37 +0000 (+0100) Subject: Remove double secs in pruning output X-Git-Tag: Release-7.0.0~2348^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6547e541025ff4b42a945ca9283d30feb93e3a81;p=bacula%2Fbacula Remove double secs in pruning output --- diff --git a/bacula/src/dird/ua_prune.c b/bacula/src/dird/ua_prune.c index ea36fef8a6..9e532f4c6b 100644 --- a/bacula/src/dird/ua_prune.c +++ b/bacula/src/dird/ua_prune.c @@ -390,7 +390,7 @@ int prune_jobs(UAContext *ua, CLIENT *client, POOL *pool, int JobType) * and stuff them into the "DeletionCandidates" table. */ edit_utime(now-period, ed1, sizeof(ed1)); - Jmsg(ua->jcr, M_INFO, 0, _("Begin pruning Jobs older than %s secs.\n"), ed1); + Jmsg(ua->jcr, M_INFO, 0, _("Begin pruning Jobs older than %s.\n"), ed1); edit_int64(now - period, ed1); Mmsg(query, insert_delcand, (char)JobType, ed1, edit_int64(cr.ClientId, ed2));