From: Kern Sibbald Date: Wed, 25 Jun 2008 22:14:10 +0000 (+0000) Subject: Fix format problem in bscan output reported in bug #1105. X-Git-Tag: Release-2.4.1~41 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=832733084dbd6b44ce608dbd5f1a8b6a7da1a6c8;p=bacula%2Fbacula Fix format problem in bscan output reported in bug #1105. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.4@7237 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/stored/bscan.c b/bacula/src/stored/bscan.c index e24a53bcb5..157287c0b9 100644 --- a/bacula/src/stored/bscan.c +++ b/bacula/src/stored/bscan.c @@ -277,7 +277,7 @@ int main (int argc, char *argv[]) struct stat sb; fstat(dev->fd(), &sb); currentVolumeSize = sb.st_size; - Pmsg1(000, _("First Volume Size = %sn"), + Pmsg1(000, _("First Volume Size = %s\n"), edit_uint64(currentVolumeSize, ed1)); } @@ -352,7 +352,7 @@ static bool bscan_mount_next_read_volume(DCR *dcr) struct stat sb; fstat(dev->fd(), &sb); currentVolumeSize = sb.st_size; - Pmsg1(000, _("First Volume Size = %sn"), + Pmsg1(000, _("First Volume Size = %s\n"), edit_uint64(currentVolumeSize, ed1)); } return stat; diff --git a/bacula/technotes-2.3 b/bacula/technotes-2.3 index b61c1a9c4b..f8665542be 100644 --- a/bacula/technotes-2.3 +++ b/bacula/technotes-2.3 @@ -1,6 +1,8 @@ Technical notes on version 2.2 General: +25Jun08 +kes Fix format problem in bscan output reported in bug #1105. 22Jun08 kes Copy more data when restarting a job so that run overrides are kept. This should fix bug #1094.