Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock

Please unblock neon27 , which fixes #480041 [1] , an SSL cert failure
with the patch that got accepted upstream. It's simple, it repeats
GnuTLS handshake while it needs to be retried:
--- a/src/ne_socket.c
+++ b/src/ne_socket.c
@@ -1789,7 +1789,9 @@
     }
     sock->ops = &iofns_ssl;

-    ret = gnutls_handshake(sock->ssl);
+    do {
+        ret = gnutls_handshake(sock->ssl);
+    } while (RETRY_GNUTLS(sock, ret));
     if (ret < 0) {
        error_gnutls(sock, ret);
         return NE_SOCK_ERROR;

Thanks,
Laszlo/GCS
[1] http://bugs.debian.org/480041




-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to