From: PW Hu Date: Fri, 3 Sep 2021 07:18:02 +0000 (+0800) Subject: fix documentation error caused by commit 6882652e65d39310c98ba506ceb55a87c702d419 X-Git-Tag: openssl-3.2.0-alpha1~3592 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d55d27b2da7a84c9f4b872060be979b5f64af2c;p=thirdparty%2Fopenssl.git fix documentation error caused by commit 6882652e65d39310c98ba506ceb55a87c702d419 CLA:trivial Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/16502) --- diff --git a/doc/internal/man3/ossl_method_construct.pod b/doc/internal/man3/ossl_method_construct.pod index 7666c9a0904..b05ea9845c1 100644 --- a/doc/internal/man3/ossl_method_construct.pod +++ b/doc/internal/man3/ossl_method_construct.pod @@ -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,