From: Eric Bollengier Date: Tue, 8 Jun 2021 15:33:24 +0000 (+0200) Subject: Fix #7776 About FD error not correctly reported in the job log X-Git-Tag: Release-11.0.6~145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c473333d2d7f5f6484156b2a7efdd992c345a4ee;p=thirdparty%2Fbacula.git Fix #7776 About FD error not correctly reported in the job log --- diff --git a/bacula/src/findlib/find_one.c b/bacula/src/findlib/find_one.c index c73a5d626..bd70f72d4 100644 --- a/bacula/src/findlib/find_one.c +++ b/bacula/src/findlib/find_one.c @@ -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);