X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=blobdiff_plain;f=bin%2FBackupPC_compressPool;fp=bin%2FBackupPC_compressPool;h=4f22a276118a4ce065052dfcf72ddfe1977d2bd6;hp=3796c75d88706b8480994f0a3c491e3f364238d0;hb=8d7768574bb328c669a44c6efbff01e8a7e93d7e;hpb=74dc9d456332757127d5eda4ce32f29377133fa2 diff --git a/bin/BackupPC_compressPool b/bin/BackupPC_compressPool index 3796c75..4f22a27 100755 --- a/bin/BackupPC_compressPool +++ b/bin/BackupPC_compressPool @@ -49,13 +49,14 @@ # #======================================================================== # -# Version 2.0.0beta3, released 1 Jun 2003. +# Version 2.0.0, released 14 Jun 2003. # # See http://backuppc.sourceforge.net. # #======================================================================== use strict; +no utf8; use File::Find; use File::Path; @@ -178,6 +179,7 @@ sub doCompress $Errors++; return; } + binmode(FH); while ( sysread(FH, $dataIn, $CompMaxWrite) > 0 ) { $flush = 0; $FileOrigSz += length($dataIn); @@ -202,6 +204,7 @@ sub doCompress close(FH); return; } + binmode(OUT); $copy = 1; } if ( $copy && $dataOut ne "" ) { @@ -244,6 +247,7 @@ sub doCompress unlink("$file.__z"); return; } + binmode(FH); } if ( $copy ) { if ( !sysseek(OUT, 0, 0) ) { @@ -329,6 +333,7 @@ sub checkRead $f->close(); return; } + binmode(FH); #print("comparing $file to $cfile\n"); while ( 1 ) { $n = 1 + int(rand($CompMaxRead) + rand(100)); @@ -363,6 +368,7 @@ sub checkReadLine $f->close(); return; } + binmode(FH); while ( 1 ) { $d0 = ; $d = $f->readLine();