Hello community,

here is the log from the commit of package xchat for openSUSE:Factory checked 
in at 2015-04-12 00:10:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xchat (Old)
 and      /work/SRC/openSUSE:Factory/.xchat.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xchat"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xchat/xchat.changes      2013-09-17 
15:04:44.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.xchat.new/xchat.changes 2015-04-12 
00:10:45.000000000 +0200
@@ -1,0 +2,8 @@
+Fri Apr 10 08:19:47 UTC 2015 - meiss...@suse.com
+
+- Add xchat-use-tls.patch: Replace SSLv3_method by SSLv23_method.
+  SSLv3 is SSL3.0 only, SSLv23_method will select the best
+  (TLS 1.2, 1.1, 1.0 or 3.0).
+  https://sourceforge.net/p/xchat/bugs/1598/
+
+-------------------------------------------------------------------

New:
----
  xchat-use-tls.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xchat.spec ++++++
--- /var/tmp/diff_new_pack.q4VaVk/_old  2015-04-12 00:10:46.000000000 +0200
+++ /var/tmp/diff_new_pack.q4VaVk/_new  2015-04-12 00:10:46.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xchat
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -49,6 +49,8 @@
 Patch12:        xchat-link-against-libnotify.patch
 # PATCH-FIX-UPSTREAM xchat-glib-2.31.patch sf#3446968 dims...@opensuse.org -- 
Fix build with glib 2.31.
 Patch13:        xchat-glib-2.31.patch
+# PATCH-FIX-UPSTREAM xchat-use-tls.patch 
https://sourceforge.net/p/xchat/bugs/1598/ meiss...@suse.de -- enable modern TLS
+Patch14:        xchat-use-tls.patch
 BuildRequires:  fdupes
 BuildRequires:  gnome-patch-translation
 # BuildRequires for installing hicolor icons
@@ -133,6 +135,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch13 -p1
+%patch14 -p1
 gnome-patch-translation-update
 
 %build








++++++ xchat-use-tls.patch ++++++
Index: xchat-2.8.8/src/common/ssl.c
===================================================================
--- xchat-2.8.8.orig/src/common/ssl.c
+++ xchat-2.8.8/src/common/ssl.c
@@ -70,7 +70,7 @@ _SSL_context_init (void (*info_cb_func),
 
        SSLeay_add_ssl_algorithms ();
        SSL_load_error_strings ();
-       ctx = SSL_CTX_new (server ? SSLv3_server_method() : SSLv3_client_method 
());
+       ctx = SSL_CTX_new (server ? SSLv23_server_method() : 
SSLv23_client_method ());
 
        SSL_CTX_set_session_cache_mode (ctx, SSL_SESS_CACHE_BOTH);
        SSL_CTX_set_timeout (ctx, 300);
@@ -281,7 +281,7 @@ _SSL_socket (SSL_CTX *ctx, int sd)
                __SSL_critical_error ("SSL_new");
 
        SSL_set_fd (ssl, sd);
-       if (ctx->method == SSLv3_client_method())
+       if (ctx->method == SSLv23_client_method())
                SSL_set_connect_state (ssl);
        else
                SSL_set_accept_state(ssl);

Reply via email to