summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-02-23 11:49:55 +1000
committerPauli <ppzgs1@gmail.com>2021-02-26 18:08:41 +1000
commite79fb279dfc146af0948d2727656f72226ef104f (patch)
tree06860f6abf37354da7bfebd86dfe0a78f4bd6bd8 /include
parentfe20a66ed4f911f641af4123f931319677b1e8b7 (diff)
core: support modified gettable/settable ctx calls for ciphers
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14240)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/core_dispatch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/core_dispatch.h b/include/openssl/core_dispatch.h
index cb4506f617..634159524d 100644
--- a/include/openssl/core_dispatch.h
+++ b/include/openssl/core_dispatch.h
@@ -315,9 +315,9 @@ OSSL_CORE_MAKE_FUNC(int, cipher_set_ctx_params, (void *cctx,
OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, cipher_gettable_params,
(void *provctx))
OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, cipher_settable_ctx_params,
- (void *provctx))
+ (void *cctx, void *provctx))
OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, cipher_gettable_ctx_params,
- (void *provctx))
+ (void *cctx, void *provctx))
/* MACs */