aboutsummaryrefslogtreecommitdiff
path: root/libraries/gwenhywfar/gwen-gnutls.patch
diff options
context:
space:
mode:
authorHeiko Rosemann <heiko.rosemann@web.de>2016-08-20 07:13:38 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2016-08-20 07:49:48 +0700
commit19042cca6c0673e25dcb2bd16730c0a6924f80a7 (patch)
treea79b633821c167ed7d4a76f84bd0b595660c3cb6 /libraries/gwenhywfar/gwen-gnutls.patch
parent6cadd0391c333b523291c7aef4c31945b80afc65 (diff)
libraries/gwenhywfar: Updated for version 4.15.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/gwenhywfar/gwen-gnutls.patch')
-rw-r--r--libraries/gwenhywfar/gwen-gnutls.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/libraries/gwenhywfar/gwen-gnutls.patch b/libraries/gwenhywfar/gwen-gnutls.patch
deleted file mode 100644
index b83015293cf4e..0000000000000
--- a/libraries/gwenhywfar/gwen-gnutls.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -up gwenhywfar-4.13.1/src/sio/syncio_tls.c.foo gwenhywfar-4.13.1/src/sio/syncio_tls.c
---- gwenhywfar-4.13.1/src/sio/syncio_tls.c.foo 2015-12-11 22:35:48.474181431 -0500
-+++ gwenhywfar-4.13.1/src/sio/syncio_tls.c 2015-12-11 22:41:27.414733356 -0500
-@@ -361,12 +361,12 @@ int GWEN_SyncIo_Tls_Prepare(GWEN_SYNCIO
-
- /* possibly force protocol priority */
- if (lflags & GWEN_SYNCIO_TLS_FLAGS_FORCE_SSL_V3) {
-- const int proto_prio[2] = { GNUTLS_SSL3, 0 };
-+ char *force_sslv3_str = "NORMAL:-VERS-TLS-ALL:+VERS-SSL3.0";
-
- DBG_INFO(GWEN_LOGDOMAIN, "Forcing SSL v3");
-- rv=gnutls_protocol_set_priority(xio->session, proto_prio);
-+ rv=gnutls_priority_set_direct(xio->session, force_sslv3_str, NULL);
- if (rv) {
-- DBG_ERROR(GWEN_LOGDOMAIN, "gnutls_protocol_set_priority: %d (%s)", rv, gnutls_strerror(rv));
-+ DBG_ERROR(GWEN_LOGDOMAIN, "gnutls_priority_set_direct: %d (%s)", rv, gnutls_strerror(rv));
- gnutls_deinit(xio->session);
- return GWEN_ERROR_GENERIC;
- }