From 832733084dbd6b44ce608dbd5f1a8b6a7da1a6c8 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Wed, 25 Jun 2008 22:14:10 +0000 Subject: [PATCH] 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 --- bacula/src/stored/bscan.c | 4 ++-- bacula/technotes-2.3 | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) 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. -- 2.39.5