X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=bin%2FBackupPC_compressPool;h=998f35f3804d65789352e762436ef5213d83a94a;hb=e4a233559926fe41888b2f6c5cc716401b715162;hp=a3d358355037ad6e18b458edb3f2fbbda779c9d6;hpb=e9453b7611be63303572ae443d5fb56b73364678;p=BackupPC.git diff --git a/bin/BackupPC_compressPool b/bin/BackupPC_compressPool index a3d3583..998f35f 100755 --- a/bin/BackupPC_compressPool +++ b/bin/BackupPC_compressPool @@ -49,7 +49,7 @@ # #======================================================================== # -# Version 1.6.0_CVS, released 10 Dec 2002. +# Version 2.0.0beta2, released 13 Apr 2003. # # See http://backuppc.sourceforge.net. # @@ -173,7 +173,7 @@ sub doCompress -Bufsize => 65536, -Level => $Compress, ); - if ( !open(FH, $TestMode ? "<$file" : "+<$file") ) { + if ( !open(FH, $TestMode ? "<" : "+<", $file) ) { print("Error: Can't open $file for read/write\n"); $Errors++; return; @@ -196,7 +196,7 @@ sub doCompress } $dataOut .= $fragOut; if ( !$copy && length($dataOut) > $CompMaxWrite ) { - if ( !open(OUT, "+>$file.__z") ) { + if ( !open(OUT, "+>", "$file.__z") ) { print("Error: Can't open $file.__z for write\n"); $Errors++; close(FH); @@ -237,7 +237,7 @@ sub doCompress my $newFile = cpoolFileName($file); if ( $TestMode ) { close(FH); - if ( !open(FH, ">$newFile") ) { + if ( !open(FH, ">", $newFile) ) { print("Error: Can't open $newFile for write\n"); $Errors++; close(FH); @@ -323,7 +323,7 @@ sub checkRead my($n, $nd, $r, $d, $d0); local(*FH); - if ( !open(FH, $file) ) { + if ( !open(FH, "<", $file) ) { print("can't open $file for check\n"); $Errors++; $f->close(); @@ -357,7 +357,7 @@ sub checkReadLine my($n, $nd, $r, $d, $d0); local(*FH); - if ( !open(FH, $file) ) { + if ( !open(FH, "<", $file) ) { print("can't open $file for check\n"); $Errors++; $f->close();