diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-11-12 23:49:19 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-11-12 23:49:19 +0000 |
commit | a36462570c37e1b6544fc8746e99db3d683e2ac1 (patch) | |
tree | 0914040fa8b1062c7c17478b44f27821d5dd29e1 /cpan/IO-Compress/lib/IO/Compress/Base/Common.pm | |
parent | 3a4c7bf38e79f44e30368ba5069b88c5f2e39625 (diff) | |
download | perl-a36462570c37e1b6544fc8746e99db3d683e2ac1.tar.gz |
Update IO-Compress to CPAN version 2.058
[DELTA]
2.058 12 November 2012
* RT# 81119: Latest IO::Compress 2.057 fails tests on 5.8.x
Diffstat (limited to 'cpan/IO-Compress/lib/IO/Compress/Base/Common.pm')
-rw-r--r-- | cpan/IO-Compress/lib/IO/Compress/Base/Common.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm b/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm index deb545dfa4..11ca94745e 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm @@ -11,7 +11,7 @@ use File::GlobMapper; require Exporter; our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE); @ISA = qw(Exporter); -$VERSION = '2.057'; +$VERSION = '2.058'; @EXPORT = qw( isaFilehandle isaFilename isaScalar whatIsInput whatIsOutput @@ -106,7 +106,7 @@ sub setBinModeOutput($) { my $handle = shift ; - binmode $handle + binmode $handle if $needBinmode; } |