From: Jan Dubois Date: Tue, 6 Nov 2007 15:58:05 +0000 (-0800) Subject: Erroneous binmode() call in uupacktool.pl X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=affddad4a362e52a59118d6b0e80c83e34b95a13;p=p5sagit%2Fp5-mst-13.2.git Erroneous binmode() call in uupacktool.pl From: "Jan Dubois" Message-ID: <01f101c820d0$df6c9220$9e45b660$@com> p4raw-id: //depot/perl@32234 --- diff --git a/uupacktool.pl b/uupacktool.pl index bf947bb..bb4dc00 100644 --- a/uupacktool.pl +++ b/uupacktool.pl @@ -26,7 +26,6 @@ sub handle_file { open my $fh, "<", $file or do { warn "Could not open input file $file: $!"; exit 0 }; - binmode $fh; my $str = do { local $/; <$fh> }; ### unpack?