From: Eric Bollengier Date: Fri, 13 Jul 2007 12:34:19 +0000 (+0000) Subject: ebl move Errors count up to be more easy to parse with Bweb X-Git-Tag: Release-7.0.0~6011 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cfcd577649b1b42595ef89484353152bee7cc22e;p=bacula%2Fbacula ebl move Errors count up to be more easy to parse with Bweb git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5168 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/filed/status.c b/bacula/src/filed/status.c index 866cc18dd6..c3c2da632d 100644 --- a/bacula/src/filed/status.c +++ b/bacula/src/filed/status.c @@ -169,15 +169,15 @@ void output_status(void sendit(const char *msg, int len, void *sarg), void *arg) sec = 1; } bps = (int)(njcr->JobBytes / sec); - len = Mmsg(msg, _(" Files=%s Bytes=%s Bytes/sec=%s\n"), + len = Mmsg(msg, _(" Files=%s Bytes=%s Bytes/sec=%s Errors=%d\n"), edit_uint64_with_commas(njcr->JobFiles, b1), edit_uint64_with_commas(njcr->JobBytes, b2), - edit_uint64_with_commas(bps, b3)); - sendit(msg.c_str(), len, arg); - len = Mmsg(msg, _(" Files Examined=%s Errors=%d\n"), - edit_uint64_with_commas(njcr->num_files_examined, b1), + edit_uint64_with_commas(bps, b3), njcr->JobErrors); sendit(msg.c_str(), len, arg); + len = Mmsg(msg, _(" Files Examined=%s\n"), + edit_uint64_with_commas(njcr->num_files_examined, b1)); + sendit(msg.c_str(), len, arg); if (njcr->JobFiles > 0) { njcr->lock(); len = Mmsg(msg, _(" Processing file: %s\n"), njcr->last_fname);