summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDr. David von Oheimb <dev@ddvo.net>2022-12-08 08:47:08 +0100
committerMatt Caswell <matt@openssl.org>2022-12-08 09:16:06 +0000
commit9a5c884999a55595e376083b3a165515c8123049 (patch)
tree852bfc2298218cc6ed94c14a5c92e8a38a5355b4 /test
parentf6fdbe63c7c51bd7c2c37567781d166e475ab5b1 (diff)
cmp_vfy_test.c: fix name OSSL_CMP_CTX_set0_trusted{,Store}
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19859)
Diffstat (limited to 'test')
-rw-r--r--test/cmp_vfy_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmp_vfy_test.c b/test/cmp_vfy_test.c
index 23117760d1..ed8e1b3143 100644
--- a/test/cmp_vfy_test.c
+++ b/test/cmp_vfy_test.c
@@ -153,7 +153,7 @@ static int test_validate_msg_mac_alg_protection(int miss, int wrong)
SETUP_TEST_FIXTURE(CMP_VFY_TEST_FIXTURE, set_up);
fixture->expected = !miss && !wrong;
- if (!TEST_true(miss ? OSSL_CMP_CTX_set0_trusted(fixture->cmp_ctx, NULL)
+ if (!TEST_true(miss ? OSSL_CMP_CTX_set0_trustedStore(fixture->cmp_ctx, NULL)
: OSSL_CMP_CTX_set1_secretValue(fixture->cmp_ctx, sec_1,
wrong ? 4 : sizeof(sec_1)))
|| !TEST_ptr(fixture->msg = load_pkimsg(ip_waiting_f, libctx))) {