From: PW Hu Date: Fri, 3 Sep 2021 07:09:54 +0000 (+0800) Subject: fix documentation error caused by commit 9067cf6ccdce0a73922f06937e54c2fce2752038 X-Git-Tag: openssl-3.2.0-alpha1~3593 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48b3ad05680ba3e3668bcb6491bf4447033464ed;p=thirdparty%2Fopenssl.git fix documentation error caused by commit 9067cf6ccdce0a73922f06937e54c2fce2752038 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 d2202bccfa4..7666c9a0904 100644 --- a/doc/internal/man3/ossl_method_construct.pod +++ b/doc/internal/man3/ossl_method_construct.pod @@ -10,10 +10,8 @@ OSSL_METHOD_CONSTRUCT_METHOD, ossl_method_construct #include "internal/core.h" struct ossl_method_construct_method_st { - /* Create store */ - void *(*alloc_tmp_store)(OSSL_LIB_CTX *ctx); - /* Remove a store */ - void (*dealloc_tmp_store)(void *store); + /* 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); /* Store a method in a store */