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

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