about summary refs log tree commit
path: root/lib/Net/NNTP.pm
diff options
context:
space:
mode:
authorSteffen Ullrich <Steffen_Ullrich@genua.de>2014-10-09 21:50:04 +0200
committerSteve Hay <steve.m.hay@googlemail.com>2014-10-09 21:24:40 +0100
commit042ff9d728f2100e7e30d61d9664755140f5e23e (patch)
treedc31580cc68d706f5bc085fe628a3ca34418cbcf /lib/Net/NNTP.pm
parentc18c7f967d4d204e30de9e821cbd4910cb90535d (diff)
downloadperl-libnet-042ff9d728f2100e7e30d61d9664755140f5e23e.tar.gz
use version 1.999 of IO::Socket::SSL, because it protects against bad versions of IO::Socket::IP (0.30)
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 db951dc..4df5b97 100644
--- a/lib/Net/NNTP.pm
+++ b/lib/Net/NNTP.pm
@@ -26,11 +26,11 @@ our $VERSION = "3.01";
 my $ssl_class = eval {
   require IO::Socket::SSL;
   # first version with default CA on most platforms
-  IO::Socket::SSL->VERSION(1.994);
+  IO::Socket::SSL->VERSION(1.999);
 } && 'IO::Socket::SSL';
 
 my $nossl_warn = !$ssl_class &&
-  'To use SSL please install IO::Socket::SSL with version>=1.994';
+  'To use SSL please install IO::Socket::SSL with version>=1.999';
 
 # Code for detecting if we can use IPv6
 my $inet6_class = eval {