From 07a15f23a260ae6dd918f477d37e71af0baa3fef Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Tue, 29 Jun 2021 10:07:51 +0200 Subject: [PATCH] Fix for CONC-558: Allow all curves when specifiying a cipher suite. --- libmariadb/secure/gnutls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmariadb/secure/gnutls.c b/libmariadb/secure/gnutls.c index 97db72a38..74b16463e 100644 --- a/libmariadb/secure/gnutls.c +++ b/libmariadb/secure/gnutls.c @@ -1053,7 +1053,7 @@ static int ma_gnutls_set_ciphers(gnutls_session_t ssl, token= strtok((char *)cipher_str, ":"); - strcpy(prio, "NONE:+VERS-TLS-ALL:+SIGN-ALL:+COMP-NULL"); + strcpy(prio, "NONE:+VERS-TLS-ALL:+SIGN-ALL:+COMP-NULL:+CURVE-ALL"); while (token) {