diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-03-17 17:43:32 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-03-17 17:43:32 +0000 |
commit | e91b370686eb7a86c8568cc189fee42378a70209 (patch) | |
tree | 24305d0087232444ddb6f29d6c72321c21ba5f08 /regress | |
parent | 01f86b6a2166759cc29a2646676a23c752b757a8 (diff) |
Update for DTLSv1.2 being enabled.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/unit/ssl_versions.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libssl/unit/ssl_versions.c b/regress/lib/libssl/unit/ssl_versions.c index 9551ae41306..7ddc0e4a4e7 100644 --- a/regress/lib/libssl/unit/ssl_versions.c +++ b/regress/lib/libssl/unit/ssl_versions.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_versions.c,v 1.13 2021/03/17 17:23:42 jsing Exp $ */ +/* $OpenBSD: ssl_versions.c,v 1.14 2021/03/17 17:43:31 jsing Exp $ */ /* * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org> * @@ -420,7 +420,7 @@ static struct shared_version_test shared_version_tests[] = { .minver = TLS1_1_VERSION, .maxver = TLS1_2_VERSION, .peerver = DTLS1_2_VERSION, - .want_maxver = DTLS1_VERSION, + .want_maxver = DTLS1_2_VERSION, }, { .ssl_method = DTLS_method, @@ -428,7 +428,7 @@ static struct shared_version_test shared_version_tests[] = { .minver = TLS1_1_VERSION, .maxver = TLS1_2_VERSION, .peerver = 0xfefc, /* DTLSv1.3, probably. */ - .want_maxver = DTLS1_VERSION, + .want_maxver = DTLS1_2_VERSION, }, { .ssl_method = DTLSv1_method, @@ -696,7 +696,7 @@ static struct min_max_version_test min_max_version_tests[] = { .minver = DTLS1_VERSION, .maxver = DTLS1_2_VERSION, .want_minver = DTLS1_VERSION, - .want_maxver = DTLS1_VERSION, + .want_maxver = DTLS1_2_VERSION, }, { .ssl_method = DTLSv1_method, |