From: Eric Bollengier Date: Thu, 21 Jan 2010 11:02:37 +0000 (+0100) Subject: Remove double secs in pruning output X-Git-Tag: Release-5.0.0~31^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7fda46e352030a93276758ccf4a347a0d9a67c96;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));