fixed bad handling of binary files in the perl campaigns client
This commit is contained in:
parent
7818e33e42
commit
a80f4c199f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue