Fix typo in base provider example code

CLA: trivial

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20411)
This commit is contained in:
HansHoogerwerf 2023-03-01 10:02:37 +01:00 committed by Pauli
parent 52a38144b0
commit 08a11ba204
1 changed files with 1 additions and 1 deletions

View File

@ -905,7 +905,7 @@ This relies on a few things existing in F<openssl/core_dispatch.h>:
#define OSSL_FUNC_BAR_FREECTX 2
typedef void (OSSL_FUNC_bar_freectx_fn)(void *ctx);
static ossl_inline OSSL_FUNC_bar_newctx(const OSSL_DISPATCH *opf)
static ossl_inline OSSL_FUNC_bar_freectx(const OSSL_DISPATCH *opf)
{ return (OSSL_FUNC_bar_freectx_fn *)opf->function; }
#define OSSL_FUNC_BAR_INIT 3