summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2020-10-11 02:12:55 +0000
committerjsing <>2020-10-11 02:12:55 +0000
commit4884af0400cb036042f4e33c5f8c58fb076986b4 (patch)
tree00d6b12e3b0ff5bd3f61fe15ae86b5213bb1bfc4
parentb6bb75f4585006b28ebc729355536e9e77226c3d (diff)
downloadopenbsd-4884af0400cb036042f4e33c5f8c58fb076986b4.tar.gz
openbsd-4884af0400cb036042f4e33c5f8c58fb076986b4.tar.bz2
openbsd-4884af0400cb036042f4e33c5f8c58fb076986b4.zip
Unbreak regress following SRTP_PROTECTION_PROFILE const change.
-rw-r--r--src/regress/lib/libssl/tlsext/tlsexttest.c4
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)
2583static int 2583static int
2584test_tlsext_srtp_server(void) 2584test_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;