Blame SOURCES/tigervnc-working-tls-on-fips-systems.patch

aeec89
diff --git a/common/rfb/SSecurityTLS.cxx b/common/rfb/SSecurityTLS.cxx
aeec89
index b946022..2daefa2 100644
aeec89
--- a/common/rfb/SSecurityTLS.cxx
aeec89
+++ b/common/rfb/SSecurityTLS.cxx
aeec89
@@ -186,7 +186,7 @@ void SSecurityTLS::setParams(gnutls_session_t session)
aeec89
   if (gnutls_dh_params_init(&dh_params) != GNUTLS_E_SUCCESS)
aeec89
     throw AuthFailureException("gnutls_dh_params_init failed");
aeec89
aeec89
-  if (gnutls_dh_params_generate2(dh_params, DH_BITS) != GNUTLS_E_SUCCESS)
aeec89
+  if (gnutls_dh_params_generate2(dh_params, gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_MEDIUM)) != GNUTLS_E_SUCCESS)
aeec89
     throw AuthFailureException("gnutls_dh_params_generate2 failed");
aeec89
aeec89
   if (anon) {