From 359d940358dec836dd0acfe9d9caf0b1ff0a97fe Mon Sep 17 00:00:00 2001 From: Parabola Date: Sun, 5 Feb 2012 17:25:05 +0000 Subject: Sun Feb 5 17:25:01 UTC 2012 --- community/filezilla/gnutls-3.patch | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 community/filezilla/gnutls-3.patch (limited to 'community/filezilla') diff --git a/community/filezilla/gnutls-3.patch b/community/filezilla/gnutls-3.patch deleted file mode 100644 index 88e4ac9e7..000000000 --- a/community/filezilla/gnutls-3.patch +++ /dev/null @@ -1,27 +0,0 @@ -Fix FS#25669 - -Upstream bug: http://trac.filezilla-project.org/ticket/7742 - -diff --git a/src/engine/tlssocket.cpp b/src/engine/tlssocket.cpp -index e9a5105..7ddb1ae 100644 ---- a/src/engine/tlssocket.cpp -+++ b/src/engine/tlssocket.cpp -@@ -97,7 +97,7 @@ bool CTlsSocket::Init() - return false; - } - -- res = gnutls_priority_set_direct(m_session, "SECURE256:+CTYPE-X509:-CTYPE-OPENPGP", 0); -+ res = gnutls_priority_set_direct(m_session, "NORMAL:+CTYPE-X509:-CTYPE-OPENPGP", 0); - if (res) - { - LogError(res); -@@ -113,7 +113,9 @@ bool CTlsSocket::Init() - gnutls_transport_set_push_function(m_session, PushFunction); - gnutls_transport_set_pull_function(m_session, PullFunction); - gnutls_transport_set_ptr(m_session, (gnutls_transport_ptr_t)this); -+#if GNUTLS_VERSION_MAJOR < 3 - gnutls_transport_set_lowat(m_session, 0); -+#endif - - m_shutdown_requested = false; - -- cgit v1.2.3-54-g00ecf