From: Michal Rakowski Date: Fri, 26 Mar 2021 12:17:22 +0000 (+0100) Subject: Fix #7465 About small change for 'status network' message X-Git-Tag: Release-11.3.2~634 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad9d6bfd2f0c852f78cf428fe43706d053ef5c68;p=thirdparty%2Fbacula.git Fix #7465 About small change for 'status network' message --- diff --git a/bacula/src/filed/job.c b/bacula/src/filed/job.c index f6844b776..337efdc13 100644 --- a/bacula/src/filed/job.c +++ b/bacula/src/filed/job.c @@ -596,7 +596,7 @@ static int fd_testnetwork(JCR *jcr, BSOCK *bs, int64_t bytes, int64_t nbrtt, *wspeed = bytes * 1000000 / (end - start); if (bs) { - bs->fsend("2000 OK bytes=%lld duration=%lldms write_speed=%sB/s\n", + bs->fsend("2000 OK FD wrote bytes=%lld to SD duration=%lldms write_speed=%sB/s\n", bytes, end/1000 - start/1000, edit_uint64_with_suffix(*wspeed, ed1)); } @@ -609,7 +609,7 @@ static int fd_testnetwork(JCR *jcr, BSOCK *bs, int64_t bytes, int64_t nbrtt, *rspeed = nb2 * 1000000 / (end - start); if (bs) { - bs->fsend("2000 OK bytes=%lld duration=%lldms read_speed=%sB/s\n", + bs->fsend("2000 OK FD read bytes=%lld from SD duration=%lldms read_speed=%sB/s\n", nb2, end/1000 - start/1000, edit_uint64_with_suffix(*rspeed, ed1)); }