Blame SOURCES/0030-retrace-client-stop-failing-on-SSL2.patch

06486d
From a0a65dcc1091dc5a1ad06f4e6b8eb90f47eef98f Mon Sep 17 00:00:00 2001
06486d
From: Jakub Filak <jfilak@redhat.com>
06486d
Date: Tue, 4 Feb 2014 13:03:21 +0100
06486d
Subject: [ABRT PATCH 30/30] retrace-client: stop failing on SSL2
06486d
06486d
Closes rhbz#1060796
06486d
06486d
Signed-off-by: Jakub Filak <jfilak@redhat.com>
06486d
---
06486d
 src/plugins/https-utils.c | 9 +++++----
06486d
 1 file changed, 5 insertions(+), 4 deletions(-)
06486d
06486d
diff --git a/src/plugins/https-utils.c b/src/plugins/https-utils.c
06486d
index cb3c606..f1fe825 100644
06486d
--- a/src/plugins/https-utils.c
06486d
+++ b/src/plugins/https-utils.c
06486d
@@ -213,12 +213,13 @@ void ssl_connect(struct https_cfg *cfg, PRFileDesc **tcp_sock, PRFileDesc **ssl_
06486d
         error_msg_and_die(_("Failed to wrap TCP socket by SSL."));
06486d
     if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_HANDSHAKE_AS_CLIENT, PR_TRUE))
06486d
         error_msg_and_die(_("Failed to enable client handshake to SSL socket."));
06486d
-    if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_SSL2, PR_TRUE))
06486d
-        error_msg_and_die(_("Failed to enable client handshake to SSL socket."));
06486d
+    // https://bugzilla.redhat.com/show_bug.cgi?id=1033024#c6
06486d
+    //if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_SSL2, PR_TRUE))
06486d
+    //    error_msg_and_die(_("Failed to enable SSL2."));
06486d
     if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_SSL3, PR_TRUE))
06486d
-        error_msg_and_die(_("Failed to enable client handshake to SSL socket."));
06486d
+        error_msg_and_die(_("Failed to enable SSL3."));
06486d
     if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_TLS, PR_TRUE))
06486d
-        error_msg_and_die(_("Failed to enable client handshake to SSL socket."));
06486d
+        error_msg_and_die(_("Failed to enable TLS."));
06486d
     if (SECSuccess != SSL_SetURL(*ssl_sock, cfg->url))
06486d
         error_msg_and_die(_("Failed to set URL to SSL socket."));
06486d
 
06486d
-- 
06486d
1.8.3.1
06486d