diff options
author | jsing <> | 2020-10-11 02:12:55 +0000 |
---|---|---|
committer | jsing <> | 2020-10-11 02:12:55 +0000 |
commit | 4884af0400cb036042f4e33c5f8c58fb076986b4 (patch) | |
tree | 00d6b12e3b0ff5bd3f61fe15ae86b5213bb1bfc4 /src | |
parent | b6bb75f4585006b28ebc729355536e9e77226c3d (diff) | |
download | openbsd-4884af0400cb036042f4e33c5f8c58fb076986b4.tar.gz openbsd-4884af0400cb036042f4e33c5f8c58fb076986b4.tar.bz2 openbsd-4884af0400cb036042f4e33c5f8c58fb076986b4.zip |
Unbreak regress following SRTP_PROTECTION_PROFILE const change.
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 69467533d2..7572c15955 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.43 2020/08/09 16:26:57 jsing Exp $ */ | 1 | /* $OpenBSD: tlsexttest.c,v 1.44 2020/10/11 02:12:55 jsing 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> |
@@ -2583,7 +2583,7 @@ test_tlsext_srtp_client(void) | |||
2583 | static int | 2583 | static int |
2584 | test_tlsext_srtp_server(void) | 2584 | test_tlsext_srtp_server(void) |
2585 | { | 2585 | { |
2586 | SRTP_PROTECTION_PROFILE *prof; | 2586 | const SRTP_PROTECTION_PROFILE *prof; |
2587 | SSL_CTX *ssl_ctx = NULL; | 2587 | SSL_CTX *ssl_ctx = NULL; |
2588 | SSL *ssl = NULL; | 2588 | SSL *ssl = NULL; |
2589 | uint8_t *data = NULL; | 2589 | uint8_t *data = NULL; |