about summary refs log tree commit
path: root/lib/Net/NNTP.pm
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-11-27 08:44:25 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2014-11-27 08:44:25 +0000
commit4dadbf4eb332a886023b2451ab3ef08d9af31423 (patch)
tree9152a9e1e49a80b84c0c73bd93d5c5ddc8cb04cc /lib/Net/NNTP.pm
parentaf150cc821e9a7c1f39e584352f899c7c5ceb7d9 (diff)
downloadperl-libnet-4dadbf4eb332a886023b2451ab3ef08d9af31423.tar.gz
Increase minimum requred IO::Socket::SSL version from 1.999 to 2.007
This fixes data connection problems in Net::FTP.  [Steffen Ullrich, CPAN
RT#100529]
Diffstat (limited to 'lib/Net/NNTP.pm')
-rw-r--r--lib/Net/NNTP.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Net/NNTP.pm b/lib/Net/NNTP.pm
index 60f080f..b63d421 100644
--- a/lib/Net/NNTP.pm
+++ b/lib/Net/NNTP.pm
@@ -27,11 +27,11 @@ my $ssl_class = eval {
   require IO::Socket::SSL;
   # first version with default CA on most platforms
   no warnings 'numeric';
-  IO::Socket::SSL->VERSION(1.999);
+  IO::Socket::SSL->VERSION(2.007);
 } && 'IO::Socket::SSL';
 
 my $nossl_warn = !$ssl_class &&
-  'To use SSL please install IO::Socket::SSL with version>=1.999';
+  'To use SSL please install IO::Socket::SSL with version>=2.007';
 
 # Code for detecting if we can use IPv6
 my $inet6_class = eval {