From: Frederik Wedel-Heinen Date: Fri, 13 Oct 2023 09:26:35 +0000 (+0200) Subject: Fix protocol list for cmd_Protocol() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f95231e168f1ee7de00e80407669225b0ed807e;p=thirdparty%2Fopenssl.git Fix protocol list for cmd_Protocol() Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/22273) --- diff --git a/ssl/ssl_conf.c b/ssl/ssl_conf.c index ab3ad6ee8a0..3c150a44c16 100644 --- a/ssl/ssl_conf.c +++ b/ssl/ssl_conf.c @@ -287,7 +287,8 @@ static int cmd_Protocol(SSL_CONF_CTX *cctx, const char *value) SSL_FLAG_TBL_INV("TLSv1.2", SSL_OP_NO_TLSv1_2), SSL_FLAG_TBL_INV("TLSv1.3", SSL_OP_NO_TLSv1_3), SSL_FLAG_TBL_INV("DTLSv1", SSL_OP_NO_DTLSv1), - SSL_FLAG_TBL_INV("DTLSv1.2", SSL_OP_NO_DTLSv1_2) + SSL_FLAG_TBL_INV("DTLSv1.2", SSL_OP_NO_DTLSv1_2), + SSL_FLAG_TBL_INV("DTLSv1.3", SSL_OP_NO_DTLSv1_3) }; cctx->tbl = ssl_protocol_list; cctx->ntbl = OSSL_NELEM(ssl_protocol_list);