diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-03-23 08:30:37 +0100 |
---|---|---|
committer | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-03-23 08:30:37 +0100 |
commit | 8cc86b81ac20ff3e933ea7fd107a5a6066032330 (patch) | |
tree | 5ce8dc7269dd084b99a2ee8ca4b347c68bb51ed8 /test/cmp_vfy_test.c | |
parent | Fix error handling in x509v3_cache_extensions and related functions (diff) | |
download | openssl-8cc86b81ac20ff3e933ea7fd107a5a6066032330.tar.xz openssl-8cc86b81ac20ff3e933ea7fd107a5a6066032330.zip |
Constify various mostly X509-related parameter types in crypto/ and apps/
in particular X509_NAME*, X509_STORE{,_CTX}*, and ASN1_INTEGER *,
also some result types of new functions, which does not break compatibility
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
(Merged from https://github.com/openssl/openssl/pull/10504)
Diffstat (limited to 'test/cmp_vfy_test.c')
-rw-r--r-- | test/cmp_vfy_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmp_vfy_test.c b/test/cmp_vfy_test.c index f52efa9855..f0b9b50b01 100644 --- a/test/cmp_vfy_test.c +++ b/test/cmp_vfy_test.c @@ -313,7 +313,7 @@ static int test_validate_msg_signature_sender_cert_absent(void) } -static int test_validate_with_sender(X509_NAME *name, int expected) +static int test_validate_with_sender(const X509_NAME *name, int expected) { SETUP_TEST_FIXTURE(CMP_VFY_TEST_FIXTURE, set_up); fixture->expected = expected; |