From: Eric Bollengier Date: Tue, 21 Dec 2010 12:06:20 +0000 (+0100) Subject: Keep the same keywords as in previous version X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b042c5fc9293a7ac021cdcad1f94b0c31b03f7fe;p=bacula%2Fbacula Keep the same keywords as in previous version --- diff --git a/bacula/src/filed/status.c b/bacula/src/filed/status.c index a8c5658cb9..3f10fd49da 100644 --- a/bacula/src/filed/status.c +++ b/bacula/src/filed/status.c @@ -281,12 +281,12 @@ static void list_running_jobs_api(STATUS_PKT *sp) edit_uint64(bps, b3), njcr->JobErrors, njcr->max_bandwidth); sendit(msg.c_str(), len, sp); - len = Mmsg(msg, " FilesExamined=%s\n", + len = Mmsg(msg, " Files Examined=%s\n", edit_uint64(njcr->num_files_examined, b1)); sendit(msg.c_str(), len, sp); if (njcr->JobFiles > 0) { njcr->lock(); - len = Mmsg(msg, " ProcessingFile=%s\n", njcr->last_fname); + len = Mmsg(msg, " Processing file=%s\n", njcr->last_fname); njcr->unlock(); sendit(msg.c_str(), len, sp); }