From: Pauli Date: Wed, 5 Aug 2020 03:23:52 +0000 (+1000) Subject: gettables: test changes to pass the provider context. X-Git-Tag: openssl-3.0.0-alpha7~645 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=132b61604b7f782f8ff09bb63527645e47691862;p=thirdparty%2Fopenssl.git gettables: test changes to pass the provider context. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/12581) --- diff --git a/test/tls-provider.c b/test/tls-provider.c index 37ba1f96d31..496ba7ead95 100644 --- a/test/tls-provider.c +++ b/test/tls-provider.c @@ -286,7 +286,7 @@ static const OSSL_PARAM xor_params[] = { OSSL_PARAM_END }; -static const OSSL_PARAM *xor_gettable_params(void) +static const OSSL_PARAM *xor_gettable_params(void *provctx) { return xor_params; } @@ -313,7 +313,7 @@ static const OSSL_PARAM xor_known_settable_params[] = { OSSL_PARAM_END }; -static const OSSL_PARAM *xor_settable_params(void) +static const OSSL_PARAM *xor_settable_params(void *provctx) { return xor_known_settable_params; }