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

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