]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix format problem in bscan output reported in bug #1105.
authorKern Sibbald <kern@sibbald.com>
Wed, 25 Jun 2008 22:14:10 +0000 (22:14 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 25 Jun 2008 22:14:10 +0000 (22:14 +0000)
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
bacula/technotes-2.3

index e24a53bcb565efe7fd609b927e58cce1d3fbc48d..157287c0b999d4ffa229491cafaf0f38810f9ee0 100644 (file)
@@ -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;
index b61c1a9c4bc299a90d38b38b1a30431b23b4bf3f..f8665542becf8e7cb9ae4e648f623426c71560ba 100644 (file)
@@ -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.