diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-07-13 14:12:02 +0200 |
---|---|---|
committer | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-07-30 09:38:08 +0200 |
commit | 299e0f1eaea1c57354e50a45ecb1c97ac8adb833 (patch) | |
tree | df3e8e33b17a424484029d5b2f224069f6f0873d /fuzz | |
parent | [test][ectest] Minor touches to custom_generator_test (diff) | |
download | openssl-299e0f1eaea1c57354e50a45ecb1c97ac8adb833.tar.xz openssl-299e0f1eaea1c57354e50a45ecb1c97ac8adb833.zip |
Streamline the CMP request session API, adding the generalized OSSL_CMP_exec_certreq()
Fixes #12395
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12431)
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/cmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/cmp.c b/fuzz/cmp.c index 100350ebfe..a63ef9c238 100644 --- a/fuzz/cmp.c +++ b/fuzz/cmp.c @@ -84,7 +84,7 @@ static void cmp_client_process_response(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg) break; case OSSL_CMP_PKIBODY_POLLREP: ctx->status = OSSL_CMP_PKISTATUS_waiting; - (void)OSSL_CMP_try_certreq(ctx, OSSL_CMP_PKIBODY_CR, NULL); + (void)OSSL_CMP_try_certreq(ctx, OSSL_CMP_PKIBODY_CR, NULL, NULL); break; case OSSL_CMP_PKIBODY_RP: (void)OSSL_CMP_exec_RR_ses(ctx); |