summaryrefslogtreecommitdiffstats
path: root/crypto/provider_conf.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_conf.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_conf.c')
-rw-r--r--crypto/provider_conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/provider_conf.c b/crypto/provider_conf.c
index 398340c3d2..14a2d62a7e 100644
--- a/crypto/provider_conf.c
+++ b/crypto/provider_conf.c
@@ -62,7 +62,7 @@ static const char *skip_dot(const char *name)
}
static int provider_conf_params(OSSL_PROVIDER *prov,
- struct provider_info_st *provinfo,
+ OSSL_PROVIDER_INFO *provinfo,
const char *name, const char *value,
const CONF *cnf)
{
@@ -187,7 +187,7 @@ static int provider_conf_load(OSSL_LIB_CTX *libctx, const char *name,
if (!ok)
ossl_provider_free(prov);
} else {
- struct provider_info_st entry;
+ OSSL_PROVIDER_INFO entry;
memset(&entry, 0, sizeof(entry));
ok = 1;