summaryrefslogtreecommitdiffstats
path: root/crypto/provider_predefined.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2021-06-21 15:59:41 +0100
committerMatt Caswell <matt@openssl.org>2021-06-24 14:48:15 +0100
commitb7248964a40d272bb2edc7d2f94b9ce35c804cff (patch)
tree7091279dcb7344a0e4a15b0bf19c02406e06632c /crypto/provider_predefined.c
parent549b5cb4edbc8d537ae73b6f5614efdd98ed79f4 (diff)
make struct provider_info_st a full type
Create the OSSL_PROVIDER_INFO to replace struct provider_info_st. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15854)
Diffstat (limited to 'crypto/provider_predefined.c')
-rw-r--r--crypto/provider_predefined.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/provider_predefined.c b/crypto/provider_predefined.c
index a190f49b2c..068e0b7cd9 100644
--- a/crypto/provider_predefined.c
+++ b/crypto/provider_predefined.c
@@ -17,7 +17,7 @@ OSSL_provider_init_fn ossl_fips_intern_provider_init;
#ifdef STATIC_LEGACY
OSSL_provider_init_fn ossl_legacy_provider_init;
#endif
-const struct provider_info_st ossl_predefined_providers[] = {
+const OSSL_PROVIDER_INFO ossl_predefined_providers[] = {
#ifdef FIPS_MODULE
{ "fips", NULL, ossl_fips_intern_provider_init, NULL, 1 },
#else