gnutls-drop-ecdh.patch revision 1601
1601N/ANeed to drop ECDH from algorithm list when building on Solaris,
1601N/Asince our GnuTLS build disables it in
1601N/Auserland/components/gnutls-3/patches/02_remove_elliptical.patch
1601N/A
1601N/Adiff --git a/common/rfb/CSecurityTLS.cxx b/common/rfb/CSecurityTLS.cxx
1601N/Aindex a60dbdd..032cbdd 100644
1601N/A--- a/common/rfb/CSecurityTLS.cxx
1601N/A+++ b/common/rfb/CSecurityTLS.cxx
1601N/A@@ -215,7 +215,7 @@ bool CSecurityTLS::processMsg(CConnection* cc)
1601N/A
1601N/A void CSecurityTLS::setParam()
1601N/A {
1601N/A- static const char kx_anon_priority[] = ":+ANON-ECDH:+ANON-DH";
1601N/A+ static const char kx_anon_priority[] = ":+ANON-DH";
1601N/A
1601N/A int ret;
1601N/A char *prio;
1601N/Adiff --git a/common/rfb/SSecurityTLS.cxx b/common/rfb/SSecurityTLS.cxx
1601N/Aindex c2b1ded..59fa561 100644
1601N/A--- a/common/rfb/SSecurityTLS.cxx
1601N/A+++ b/common/rfb/SSecurityTLS.cxx
1601N/A@@ -181,7 +181,7 @@ bool SSecurityTLS::processMsg(SConnection *sc)
1601N/A
1601N/A void SSecurityTLS::setParams(gnutls_session_t session)
1601N/A {
1601N/A- static const char kx_anon_priority[] = ":+ANON-ECDH:+ANON-DH";
1601N/A+ static const char kx_anon_priority[] = ":+ANON-DH";
1601N/A
1601N/A int ret;
1601N/A char *prio;