fix documentation error caused by commit 6882652e65d39310c98ba506ceb55a87c702d419
authorPW Hu <jlu.hpw@foxmail.com>
Fri, 3 Sep 2021 07:18:02 +0000 (15:18 +0800)
committerRichard Levitte <levitte@openssl.org>
Tue, 7 Sep 2021 09:14:52 +0000 (11:14 +0200)
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)

(cherry picked from commit 6d55d27b2da7a84c9f4b872060be979b5f64af2c)

doc/internal/man3/ossl_method_construct.pod

index 7666c9a0904e4bf7943cc5a2b3831558954c7bc1..b05ea9845c180eb08e9a6998c1ae31349f2cf260 100644 (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,