projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c7ff72
)
Erroneous binmode() call in uupacktool.pl
author
Jan Dubois
<jand@activestate.com>
Tue, 6 Nov 2007 15:58:05 +0000
(07:58 -0800)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Wed, 7 Nov 2007 10:45:18 +0000
(10:45 +0000)
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <
01f101c820d0
$
df6c9220
$
9e45b660
$@com>
p4raw-id: //depot/perl@32234
uupacktool.pl
patch
|
blob
|
history
diff --git
a/uupacktool.pl
b/uupacktool.pl
index
bf947bb
..
bb4dc00
100644
(file)
--- 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?