diff options
author | Tomas Mraz <tomas@openssl.org> | 2022-04-06 16:20:47 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2022-06-28 17:54:56 +0200 |
commit | 13b47155ba425ffd0683e1bff30f746c96a19049 (patch) | |
tree | 25eda32b6aa93e0caadc63592f10475a2d05fd3f /doc/man7/provider-cipher.pod | |
parent | store_result: Add fallback for fetching the keymgmt from the provider of the ... (diff) | |
download | openssl-13b47155ba425ffd0683e1bff30f746c96a19049.tar.xz openssl-13b47155ba425ffd0683e1bff30f746c96a19049.zip |
Correct doubled OSSL_OSSL when documenting OSSL_FUNC_.._fn
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17554)
Diffstat (limited to 'doc/man7/provider-cipher.pod')
-rw-r--r-- | doc/man7/provider-cipher.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man7/provider-cipher.pod b/doc/man7/provider-cipher.pod index b4a87a3282..b5bbb1b91d 100644 --- a/doc/man7/provider-cipher.pod +++ b/doc/man7/provider-cipher.pod @@ -74,8 +74,8 @@ function pointer from an B<OSSL_DISPATCH> element named B<OSSL_FUNC_{name}>. For example, the "function" OSSL_FUNC_cipher_newctx() has these: - typedef void *(OSSL_OSSL_FUNC_cipher_newctx_fn)(void *provctx); - static ossl_inline OSSL_OSSL_FUNC_cipher_newctx_fn + typedef void *(OSSL_FUNC_cipher_newctx_fn)(void *provctx); + static ossl_inline OSSL_FUNC_cipher_newctx_fn OSSL_FUNC_cipher_newctx(const OSSL_DISPATCH *opf); B<OSSL_DISPATCH> arrays are indexed by numbers that are provided as |