The branch master has been updated
via 29a84567fb859ee6ae7245115b0c347994b03012 (commit)
from ce0502ce1246046f78dc1e2b26a2790eceedd8b1 (commit)
- Log -----------------------------------------------------------------
commit 29a84567fb859ee6ae7245115b0c347994b03012
Author: Mattias Ellert <[email protected]>
Date: Sat Sep 25 04:57:57 2021 +0200
Fix variable name mis-match in example code
Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/16676)
-----------------------------------------------------------------------
Summary of changes:
doc/man7/EVP_PKEY-DH.pod | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/man7/EVP_PKEY-DH.pod b/doc/man7/EVP_PKEY-DH.pod
index 2c90982d07..cd34d323ee 100644
--- a/doc/man7/EVP_PKEY-DH.pod
+++ b/doc/man7/EVP_PKEY-DH.pod
@@ -156,7 +156,7 @@ A B<DH> key can be generated with a named safe prime group
by calling:
EVP_PKEY_CTX_set_params(pctx, params);
EVP_PKEY_generate(pctx, &pkey);
...
- EVP_PKEY_free(key);
+ EVP_PKEY_free(pkey);
EVP_PKEY_CTX_free(pctx);
B<DHX> domain parameters can be generated according to B<FIPS 186-4> by
calling: