]> git.pld-linux.org Git - packages/curl.git/commitdiff
- rel 2; fix gnutls code
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 19 Nov 2012 09:31:51 +0000 (10:31 +0100)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 19 Nov 2012 09:31:51 +0000 (10:31 +0100)
curl-gnutls.patch [new file with mode: 0644]

diff --git a/curl-gnutls.patch b/curl-gnutls.patch
new file mode 100644 (file)
index 0000000..e023471
--- /dev/null
@@ -0,0 +1,33 @@
+From 1a02e84589efb3f8717d50bdc78d3f369b799198 Mon Sep 17 00:00:00 2001
+From: Alessandro Ghedini <al3xbio@gmail.com>
+Date: Mon, 15 Oct 2012 16:06:54 +0200
+Subject: [PATCH] gnutls: put reset code into else block
+
+Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690551
+---
+ lib/gtls.c |    9 +++++----
+ 1 file changed, 5 insertions(+), 4 deletions(-)
+
+diff --git a/lib/gtls.c b/lib/gtls.c
+index 3b4dc40..f5f95ae 100644
+--- a/lib/gtls.c
++++ b/lib/gtls.c
+@@ -309,10 +309,11 @@ static CURLcode handshake(struct connectdata *conn,
+       failf(data, "gnutls_handshake() failed: %s", gnutls_strerror(rc));
+       return CURLE_SSL_CONNECT_ERROR;
+     }
+-
+-    /* Reset our connect state machine */
+-    connssl->connecting_state = ssl_connect_1;
+-    return CURLE_OK;
++    else {
++      /* Reset our connect state machine */
++      connssl->connecting_state = ssl_connect_1;
++      return CURLE_OK;
++    }
+   }
+ }
+-- 
+1.7.10
+
This page took 0.210648 seconds and 4 git commands to generate.