From: EasySec Date: Mon, 7 Feb 2022 22:16:39 +0000 (+0100) Subject: Fix small typo in EVP_KEYEXCH-ECDH.html doc example X-Git-Tag: openssl-3.2.0-alpha1~2957 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fdb31669f88cbf5d63ba16d82d95c6c84575dc0;p=thirdparty%2Fopenssl.git Fix small typo in EVP_KEYEXCH-ECDH.html doc example Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17657) --- diff --git a/doc/man7/EVP_KEYEXCH-ECDH.pod b/doc/man7/EVP_KEYEXCH-ECDH.pod index a710625f223..69d0d87b353 100644 --- a/doc/man7/EVP_KEYEXCH-ECDH.pod +++ b/doc/man7/EVP_KEYEXCH-ECDH.pod @@ -88,7 +88,7 @@ key but also using X963KDF with a user key material: size_t secret_len = out_len; unsigned int pad = 1; OSSL_PARAM params[6]; - EVP_PKET_CTX *dctx = EVP_PKEY_CTX_new_from_pkey(NULL, host_key, NULL); + EVP_PKEY_CTX *dctx = EVP_PKEY_CTX_new_from_pkey(NULL, host_key, NULL); EVP_PKEY_derive_init(dctx);