fix documentation error caused by commit 6882652e65

CLA:trivial

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16502)
This commit is contained in:
PW Hu 2021-09-03 15:18:02 +08:00 committed by Richard Levitte
parent 48b3ad0568
commit 6d55d27b2d

View File

@ -13,10 +13,10 @@ OSSL_METHOD_CONSTRUCT_METHOD, ossl_method_construct
/* Get a temporary store */
void *(*get_tmp_store)(void *data);
/* Get an already existing method from a store */
void *(*get)(OSSL_LIB_CTX *libctx, void *store, void *data);
void *(*get)(void *store, void *data);
/* Store a method in a store */
int (*put)(OSSL_LIB_CTX *libctx, void *store, void *method,
const OSSL_PROVIDER *prov, int operation_id, const char *name,
int (*put)(void *store, void *method,
const OSSL_PROVIDER *prov, const char *name,
const char *propdef, void *data);
/* Construct a new method */
void *(*construct)(const char *name, const OSSL_DISPATCH *fns,