Mailinglist Archive: opensuse-commit (1081 mails)
| < Previous | Next > |
commit perl-IO-Socket-SSL
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Thu, 17 May 2007 11:52:01 +0200
- Message-id: <20070517095201.7F1BD678168@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package perl-IO-Socket-SSL
checked in at Thu May 17 11:52:01 CEST 2007.
--------
--- perl-IO-Socket-SSL/perl-IO-Socket-SSL.changes 2007-04-23 13:57:07.000000000 +0200
+++ /mounts/work_src_done/STABLE/perl-IO-Socket-SSL/perl-IO-Socket-SSL.changes 2007-05-15 16:25:31.000000000 +0200
@@ -1,0 +2,8 @@
+Tue May 15 16:10:34 CEST 2007 - anicka@xxxxxxx
+
+- update to 1.06
+ * instead of setting undef args to '' in configure_SSL drop
+ them. This makes Net::SMTP::SSL working again because it
+ does not give LocalPort of '' to IO::Socket::INET any more
+
+-------------------------------------------------------------------
Old:
----
IO-Socket-SSL-1.05-store_set_flags.diff
IO-Socket-SSL-1.05.tar.bz2
New:
----
IO-Socket-SSL-1.06-store_set_flags.diff
IO-Socket-SSL-1.06.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-IO-Socket-SSL.spec ++++++
--- /var/tmp/diff_new_pack.wr2971/_old 2007-05-17 11:51:35.000000000 +0200
+++ /var/tmp/diff_new_pack.wr2971/_new 2007-05-17 11:51:35.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package perl-IO-Socket-SSL (Version 1.05)
+# spec file for package perl-IO-Socket-SSL (Version 1.06)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -12,7 +12,7 @@
Name: perl-IO-Socket-SSL
BuildRequires: perl-Net_SSLeay perl-libwww-perl
-Version: 1.05
+Version: 1.06
Release: 1
Provides: p_iossl
Obsoletes: p_iossl
@@ -64,6 +64,11 @@
/var/adm/perl-modules/%{name}
%changelog
+* Tue May 15 2007 - anicka@xxxxxxx
+- update to 1.06
+ * instead of setting undef args to '' in configure_SSL drop
+ them. This makes Net::SMTP::SSL working again because it
+ does not give LocalPort of '' to IO::Socket::INET any more
* Mon Apr 23 2007 - anicka@xxxxxxx
- update to 1.05
* make session cache working even if the IO::Socket::SSL object
++++++ IO-Socket-SSL-1.05-store_set_flags.diff -> IO-Socket-SSL-1.06-store_set_flags.diff ++++++
++++++ IO-Socket-SSL-1.05.tar.bz2 -> IO-Socket-SSL-1.06.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/IO-Socket-SSL-1.05/Changes new/IO-Socket-SSL-1.06/Changes
--- old/IO-Socket-SSL-1.05/Changes 2007-04-16 21:20:48.000000000 +0200
+++ new/IO-Socket-SSL-1.06/Changes 2007-04-30 09:40:13.000000000 +0200
@@ -1,8 +1,11 @@
+v1.06
+ - instead of setting undef args to '' in configure_SSL drop
+ them. This makes Net::SMTP::SSL working again because it
+ does not give LocalPort of '' to IO::Socket::INET any more
v1.05
- make session cache working even if the IO::Socket::SSL object
was not created with IO::Socket::SSL->new but with
IO::Socket::SSL->start_SSL on an established socket
-
v1.04
- added way to create SSL object with predefined session
cache, thus making it possible to share the cache between
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/IO-Socket-SSL-1.05/SSL.pm new/IO-Socket-SSL-1.06/SSL.pm
--- old/IO-Socket-SSL-1.05/SSL.pm 2007-04-16 21:23:26.000000000 +0200
+++ new/IO-Socket-SSL-1.06/SSL.pm 2007-04-30 09:40:47.000000000 +0200
@@ -41,7 +41,7 @@
BEGIN {
# Declare @ISA, $VERSION, $GLOBAL_CONTEXT_ARGS
@ISA = qw(IO::Socket::INET);
- $VERSION = '1.05';
+ $VERSION = '1.06';
$GLOBAL_CONTEXT_ARGS = {};
#Make $DEBUG another name for $Net::SSLeay::trace
@@ -139,7 +139,7 @@
%$arg_hash = ( %default_args, %$GLOBAL_CONTEXT_ARGS, %$arg_hash );
#Avoid passing undef arguments to Net::SSLeay
- !defined($arg_hash->{$_}) and ($arg_hash->{$_} = '') foreach (keys %$arg_hash);
+ defined($arg_hash->{$_}) or delete($arg_hash->{$_}) foreach (keys %$arg_hash);
#Handle CA paths properly if no CA file is specified
if ($arg_hash->{'SSL_ca_path'} ne '' and !(-f $arg_hash->{'SSL_ca_file'})) {
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |