From d1abb8f20723812d68f071ca9832886fccb73113 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Thu, 10 Mar 2011 11:44:57 +0100 Subject: [PATCH] Fix kb/s to kB/s in FD output --- bacula/src/filed/status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/filed/status.c b/bacula/src/filed/status.c index 913fb0cdb0..a7371e354a 100644 --- a/bacula/src/filed/status.c +++ b/bacula/src/filed/status.c @@ -147,7 +147,7 @@ static void list_status_header(STATUS_PKT *sp) edit_uint64_with_commas(sm_max_buffers, b5)); sendit(msg.c_str(), len, sp); len = Mmsg(msg, _(" Sizeof: boffset_t=%d size_t=%d debug=%d trace=%d " - "bwlimit=%lldkb/s\n"), sizeof(boffset_t), sizeof(size_t), + "bwlimit=%lldkB/s\n"), sizeof(boffset_t), sizeof(size_t), debug_level, get_trace(), me->max_bandwidth_per_job/1024); sendit(msg.c_str(), len, sp); if (debug_level > 0 && plugin_list->size() > 0) { -- 2.39.2