summaryrefslogtreecommitdiffstats
path: root/ftp/filezilla/gnutls3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'ftp/filezilla/gnutls3.patch')
-rw-r--r--ftp/filezilla/gnutls3.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/ftp/filezilla/gnutls3.patch b/ftp/filezilla/gnutls3.patch
new file mode 100644
index 0000000000..7ad2de21e0
--- /dev/null
+++ b/ftp/filezilla/gnutls3.patch
@@ -0,0 +1,23 @@
+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;
+