diff options
author | 2020-10-11 02:12:55 +0000 | |
---|---|---|
committer | 2020-10-11 02:12:55 +0000 | |
commit | 843bb035e8a7238ccf1575f69b71f89bccc47ddb (patch) | |
tree | 8c326bb9a7773fbb84a6eb3aabdf26695447b389 | |
parent | Constipate srtp_known_profiles, pushing it into .data.rel.ro (diff) | |
download | wireguard-openbsd-843bb035e8a7238ccf1575f69b71f89bccc47ddb.tar.xz wireguard-openbsd-843bb035e8a7238ccf1575f69b71f89bccc47ddb.zip |
Unbreak regress following SRTP_PROTECTION_PROFILE const change.
-rw-r--r-- | regress/lib/libssl/tlsext/tlsexttest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libssl/tlsext/tlsexttest.c b/regress/lib/libssl/tlsext/tlsexttest.c index 69467533d2b..7572c159554 100644 --- a/regress/lib/libssl/tlsext/tlsexttest.c +++ b/regress/lib/libssl/tlsext/tlsexttest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tlsexttest.c,v 1.43 2020/08/09 16:26:57 jsing Exp $ */ +/* $OpenBSD: tlsexttest.c,v 1.44 2020/10/11 02:12:55 jsing Exp $ */ /* * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> @@ -2583,7 +2583,7 @@ test_tlsext_srtp_client(void) static int test_tlsext_srtp_server(void) { - SRTP_PROTECTION_PROFILE *prof; + const SRTP_PROTECTION_PROFILE *prof; SSL_CTX *ssl_ctx = NULL; SSL *ssl = NULL; uint8_t *data = NULL; |