* The CSS definition has been removed from the config.pl file and
[BackupPC.git] / bin / BackupPC_tarCreate
index 57a8d63..5407f58 100755 (executable)
@@ -51,7 +51,7 @@
 #
 #========================================================================
 #
-# Version 2.1.0_CVS, released 8 Feb 2004.
+# Version 2.1.0beta0, released 20 Mar 2004.
 #
 # See http://backuppc.sourceforge.net.
 #
@@ -324,8 +324,8 @@ sub TarWriteHeader
        #
        # sprintf octal only handles up to 2^32 - 1
        #
-       my $sizeStr = sprintf("%03o", $hdr->{size} / (1 << 24))
-                   . sprintf("%08o", $hdr->{size} % (1 << 24));
+       $sizeStr = sprintf("%03o", $hdr->{size} / (1 << 24))
+                . sprintf("%08o", $hdr->{size} % (1 << 24));
     } else {
        $sizeStr = sprintf("%011o", $hdr->{size});
     }