fixed bad handling of binary files in the perl campaigns client

This commit is contained in:
Dave White 2005-09-11 18:58:22 +00:00
parent 7818e33e42
commit a80f4c199f

View file

@ -132,7 +132,7 @@ sub unarchive_dir
while(@chars) {
my $char = shift @chars;
if(1 == ord $char) {
$char = shift @chars;
$char = chr(ord(shift @chars) - 1);
}
print FILE $char;