diff options
author | tb <> | 2022-08-05 17:19:09 +0000 |
---|---|---|
committer | tb <> | 2022-08-05 17:19:09 +0000 |
commit | bcc4200a295f286ca7d94ff31b90b60e1c647e70 (patch) | |
tree | 2d503756593bf088753f8189db9950d4d20d40ce /src | |
parent | 29a681c37560876c136a94a13506866c4e126c87 (diff) | |
download | openbsd-bcc4200a295f286ca7d94ff31b90b60e1c647e70.tar.gz openbsd-bcc4200a295f286ca7d94ff31b90b60e1c647e70.tar.bz2 openbsd-bcc4200a295f286ca7d94ff31b90b60e1c647e70.zip |
fix error message
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/tlsext/tlsexttest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/tlsext/tlsexttest.c b/src/regress/lib/libssl/tlsext/tlsexttest.c index 84f7158dde..6054cf1f0e 100644 --- a/src/regress/lib/libssl/tlsext/tlsexttest.c +++ b/src/regress/lib/libssl/tlsext/tlsexttest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tlsexttest.c,v 1.73 2022/08/05 17:12:32 tb Exp $ */ | 1 | /* $OpenBSD: tlsexttest.c,v 1.74 2022/08/05 17:19:09 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> | 4 | * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> |
@@ -495,7 +495,7 @@ test_tlsext_alpn_server(void) | |||
495 | ssl->s3->alpn_selected_len = 0; | 495 | ssl->s3->alpn_selected_len = 0; |
496 | 496 | ||
497 | if (server_funcs->needs(ssl, SSL_TLSEXT_MSG_SH)) { | 497 | if (server_funcs->needs(ssl, SSL_TLSEXT_MSG_SH)) { |
498 | FAIL("server should need ALPN by default\n"); | 498 | FAIL("server should not need ALPN by default\n"); |
499 | goto err; | 499 | goto err; |
500 | } | 500 | } |
501 | 501 | ||