30 lines
953 B
Diff
30 lines
953 B
Diff
From de8448dd775231f5fcd3f050fafceb2ed013f34a Mon Sep 17 00:00:00 2001
|
|
From: Guodong Xu <guodong.xu@linaro.org>
|
|
Date: Tue, 12 Sep 2023 08:55:28 +0800
|
|
Subject: [PATCH 42/48] uadk_prov_cipher: add static descriptor to
|
|
uadk_prov_cipher_gettable_ctx_params()
|
|
|
|
Signed-off-by: Guodong Xu <guodong.xu@linaro.org>
|
|
---
|
|
src/uadk_prov_cipher.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/uadk_prov_cipher.c b/src/uadk_prov_cipher.c
|
|
index 5f9ed45..9a2c27b 100644
|
|
--- a/src/uadk_prov_cipher.c
|
|
+++ b/src/uadk_prov_cipher.c
|
|
@@ -1024,8 +1024,8 @@ static const OSSL_PARAM uadk_prov_default_ctx_params[] = {
|
|
OSSL_PARAM_END
|
|
};
|
|
|
|
-const OSSL_PARAM *uadk_prov_cipher_gettable_ctx_params(ossl_unused void *cctx,
|
|
- ossl_unused void *provctx)
|
|
+static const OSSL_PARAM *uadk_prov_cipher_gettable_ctx_params(ossl_unused void *cctx,
|
|
+ ossl_unused void *provctx)
|
|
{
|
|
return uadk_prov_default_ctx_params;
|
|
}
|
|
--
|
|
2.25.1
|
|
|