summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederik Wedel-Heinen <frederik.wedel-heinen@dencrypt.dk>2023-10-13 11:26:35 +0200
committerMatt Caswell <matt@openssl.org>2024-04-02 13:47:58 +0100
commit678297289166e820de94c4b1e9d11cad0e2ea8da (patch)
treedc8056a0830b14a0860c9fecd903625fd1b3d922
parentcb589d2ed6ef9a5c52df1aad7519a9e75da9409e (diff)
Fix protocol list for cmd_Protocol()
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22273)
-rw-r--r--ssl/ssl_conf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/ssl_conf.c b/ssl/ssl_conf.c
index 7d2dd279a2..29e8352ed9 100644
--- a/ssl/ssl_conf.c
+++ b/ssl/ssl_conf.c
@@ -285,7 +285,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);