From: Pauli Date: Mon, 22 Feb 2021 23:51:48 +0000 (+1000) Subject: core: update RNG gettable/settable ctx param calls X-Git-Tag: openssl-3.0.0-alpha13~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c9eaf42510d0756ce0d219c5127dff2f1a0b83d;p=thirdparty%2Fopenssl.git core: update RNG gettable/settable ctx param calls Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/14240) --- diff --git a/include/openssl/core_dispatch.h b/include/openssl/core_dispatch.h index 6afde430d37..ae3da5b1395 100644 --- a/include/openssl/core_dispatch.h +++ b/include/openssl/core_dispatch.h @@ -432,9 +432,9 @@ OSSL_CORE_MAKE_FUNC(int,rand_lock, (void *vctx)) OSSL_CORE_MAKE_FUNC(void,rand_unlock, (void *vctx)) OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *,rand_gettable_params, (void *provctx)) OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *,rand_gettable_ctx_params, - (void *provctx)) + (void *vctx, void *provctx)) OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *,rand_settable_ctx_params, - (void *provctx)) + (void *vctx, void *provctx)) OSSL_CORE_MAKE_FUNC(int,rand_get_params, (OSSL_PARAM params[])) OSSL_CORE_MAKE_FUNC(int,rand_get_ctx_params, (void *vctx, OSSL_PARAM params[]))