summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-08-05 13:23:52 +1000
committerPauli <paul.dale@oracle.com>2020-08-07 08:02:14 +1000
commit132b61604b7f782f8ff09bb63527645e47691862 (patch)
tree4f56ac3ccbb0a8d086619a2da15f729bdd5da6c5
parentaf5e1e852d4858860d4b7210cafe7bdf39e73f80 (diff)
downloadopenssl-new-132b61604b7f782f8ff09bb63527645e47691862.tar.gz
gettables: test changes to pass the provider context.
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12581)
-rw-r--r--test/tls-provider.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tls-provider.c b/test/tls-provider.c
index 37ba1f96d3..496ba7ead9 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;
}