summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2024-01-27 14:35:13 +0000
committerjsing <>2024-01-27 14:35:13 +0000
commit69d87155282866a8ffaeb4c64c869383a6f8c3fb (patch)
tree633865a13d99ac9d5515314f125373ec169ccff3
parent522a2c5a3981d1190efece569dd51b09d051edc2 (diff)
downloadopenbsd-69d87155282866a8ffaeb4c64c869383a6f8c3fb.tar.gz
openbsd-69d87155282866a8ffaeb4c64c869383a6f8c3fb.tar.bz2
openbsd-69d87155282866a8ffaeb4c64c869383a6f8c3fb.zip
Enable for TLSv1.3 now that shutdown behaviour matches the legacy stack.
-rw-r--r--src/regress/lib/libssl/shutdown/shutdowntest.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/shutdown/shutdowntest.c b/src/regress/lib/libssl/shutdown/shutdowntest.c
index 7dea3a8501..749ccaa435 100644
--- a/src/regress/lib/libssl/shutdown/shutdowntest.c
+++ b/src/regress/lib/libssl/shutdown/shutdowntest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: shutdowntest.c,v 1.1 2024/01/19 08:29:08 jsing Exp $ */ 1/* $OpenBSD: shutdowntest.c,v 1.2 2024/01/27 14:35:13 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2020, 2021, 2024 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2020, 2021, 2024 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -489,12 +489,10 @@ struct ssl_version ssl_versions[] = {
489 .version = TLS1_2_VERSION, 489 .version = TLS1_2_VERSION,
490 .name = SSL_TXT_TLSV1_2, 490 .name = SSL_TXT_TLSV1_2,
491 }, 491 },
492#if 0
493 { 492 {
494 .version = TLS1_3_VERSION, 493 .version = TLS1_3_VERSION,
495 .name = SSL_TXT_TLSV1_3, 494 .name = SSL_TXT_TLSV1_3,
496 }, 495 },
497#endif
498}; 496};
499 497
500#define N_SSL_VERSIONS (sizeof(ssl_versions) / sizeof(*ssl_versions)) 498#define N_SSL_VERSIONS (sizeof(ssl_versions) / sizeof(*ssl_versions))