From 1a7cd250ad55a3c9d684a7259c20ea8075c2b08b Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Wed, 13 May 2020 09:28:24 +0200 Subject: Add libctx and propq parameters to OSSL_CMP_{SRV_},CTX_new() and ossl_cmp_mock_srv_new() Also remove not really to-the-point error message if call fails in apps/cmp.c Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/11808) --- test/cmp_ctx_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/cmp_ctx_test.c') diff --git a/test/cmp_ctx_test.c b/test/cmp_ctx_test.c index 898053424e..184e5bf498 100644 --- a/test/cmp_ctx_test.c +++ b/test/cmp_ctx_test.c @@ -37,7 +37,7 @@ static OSSL_CMP_CTX_TEST_FIXTURE *set_up(const char *const test_case_name) if (!TEST_ptr(fixture = OPENSSL_zalloc(sizeof(*fixture)))) return NULL; - if (!TEST_ptr(fixture->ctx = OSSL_CMP_CTX_new())) { + if (!TEST_ptr(fixture->ctx = OSSL_CMP_CTX_new(NULL, NULL))) { tear_down(fixture); return NULL; } -- cgit v1.2.3