r27058 - in /branches/upstream/libio-socket-ssl-perl/current: Changes SSL.pm

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Sat Nov 22 07:56:56 UTC 2008


Author: rmayorga-guest
Date: Sat Nov 22 07:56:53 2008
New Revision: 27058

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=27058
Log:
[svn-upgrade] Integrating new upstream version, libio-socket-ssl-perl (1.18)

Modified:
    branches/upstream/libio-socket-ssl-perl/current/Changes
    branches/upstream/libio-socket-ssl-perl/current/SSL.pm

Modified: branches/upstream/libio-socket-ssl-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/Changes?rev=27058&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/Changes (original)
+++ branches/upstream/libio-socket-ssl-perl/current/Changes Sat Nov 22 07:56:53 2008
@@ -1,17 +1,22 @@
 
-v.17 2008.10.13
+v1.18 2008.11.17
+- fixed typo in argument: wildcars_in_cn -> wildcards_in_cn
+  http://rt.cpan.org/Ticket/Display.html?id=40997
+  thanks to ludwig[DOT]nussel[AT]suse[DOT]de for reporting
+
+v1.17 2008.10.13
 - no code changes, publish v.16_3 as v.17 because it looks better 
   than v.16
 - document win32 behavior regarding non-blocking and timeouts
 
-v.16_3   2008.09.25
+v1.16_3   2008.09.25
 - fix t/nonblock.t with workaround for problems with 
   IO::Socket::INET on some systems (Mac,5.6.2) where it cannot do 
   nonblocking connect and leaves socket blocked.
 - make some tests less verbose by fixing diag in t/testlib.t 
   (send output to STDOUT not STDERR and prefix with '#')
 
-v.16_2   2008.09.24
+v1.16_2   2008.09.24
 - work around Bug in IO::Socket::INET6 on BSD systems
   http://rt.cpan.org/Ticket/Display.html?id=39550
   by setting Domain based on PeerAddr
@@ -19,7 +24,7 @@
 - remove tests of recv/send from t/core.t. Might badly interact
   with SSL handshake and cause crashes as seen on OS X 10.4
 
-v.16_1   2008.09.19
+v1.16_1   2008.09.19
 - better support for IPv6:
   - IPv6 is enabled by default if IO::Socket::INET6 is available
   - t/inet6.t for basic tests

Modified: branches/upstream/libio-socket-ssl-perl/current/SSL.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/SSL.pm?rev=27058&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/SSL.pm (original)
+++ branches/upstream/libio-socket-ssl-perl/current/SSL.pm Sat Nov 22 07:56:53 2008
@@ -66,7 +66,7 @@
 	}) {
 		@ISA = qw(IO::Socket::INET);
 	}
-	$VERSION = '1.17';
+	$VERSION = '1.18';
 	$GLOBAL_CONTEXT_ARGS = {};
 
 	#Make $DEBUG another name for $Net::SSLeay::trace
@@ -1124,7 +1124,7 @@
 
 		if ( $scheme->{check_cn} eq 'always' or 
 			$scheme->{check_cn} eq 'when_only' and !$alt_dnsNames) {
-			$check_name->($commonName,$identity,$scheme->{wildcars_in_cn})
+			$check_name->($commonName,$identity,$scheme->{wildcards_in_cn})
 				and return 1;
 		}
 




More information about the Pkg-perl-cvs-commits mailing list