]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Fix #7776 About FD error not correctly reported in the job log
authorEric Bollengier <eric@baculasystems.com>
Tue, 8 Jun 2021 15:33:24 +0000 (17:33 +0200)
committerEric Bollengier <eric@baculasystems.com>
Tue, 8 Jun 2021 15:40:20 +0000 (17:40 +0200)
bacula/src/findlib/find_one.c

index c73a5d6265a069defcca146a6105daf0697d7060..bd70f72d487e0183b6dced0d780ca8eac3283e51 100644 (file)
@@ -272,7 +272,7 @@ bool has_file_changed(JCR *jcr, FF_PKT *ff_pkt)
    }
 
    if ((int64_t)statp.st_size != (int64_t)ff_pkt->statp.st_size) {
-      Jmsg(jcr, M_ERROR, 0, _("%s size of %lld changed during backup to %lld.n"),ff_pkt->fname,
+      Jmsg(jcr, M_ERROR, 0, _("%s size of %lld changed during backup to %lld.\n"),ff_pkt->fname,
          (int64_t)ff_pkt->statp.st_size, (int64_t)statp.st_size);
       Dmsg3(50, "%s size (%lld) changed during backup (%lld).\n", ff_pkt->fname,
             (int64_t)ff_pkt->statp.st_size, (int64_t)statp.st_size);