summaryrefslogtreecommitdiff
path: root/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-11-12 23:49:19 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-11-12 23:49:19 +0000
commita36462570c37e1b6544fc8746e99db3d683e2ac1 (patch)
tree0914040fa8b1062c7c17478b44f27821d5dd29e1 /cpan/IO-Compress/lib/IO/Compress/Base/Common.pm
parent3a4c7bf38e79f44e30368ba5069b88c5f2e39625 (diff)
downloadperl-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.pm4
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;
}