]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Fix #7465 About small change for 'status network' message
authorMichal Rakowski <michal.rakowski@baculasystems.com>
Fri, 26 Mar 2021 12:17:22 +0000 (13:17 +0100)
committerEric Bollengier <eric@baculasystems.com>
Thu, 24 Mar 2022 08:03:01 +0000 (09:03 +0100)
bacula/src/filed/job.c

index f6844b776f1dc4184fd15621f3f23a135415de72..337efdc13a7f954cb9fc273200e1ed1df0c9e66e 100644 (file)
@@ -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));
       }