diff options
author | Matt Caswell <matt@openssl.org> | 2020-07-01 10:30:53 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-07-03 18:37:53 +0200 |
commit | bb2d726d75c062513b796d6c76c2a1ea9ff27e24 (patch) | |
tree | f01caa0792ae45fe3351a0ed4e0059dce235ce79 /doc/man3/d2i_X509.pod | |
parent | Don't run the cmp_cli tests if using FUZZING_BUILD_MODE (diff) | |
download | openssl-bb2d726d75c062513b796d6c76c2a1ea9ff27e24.tar.xz openssl-bb2d726d75c062513b796d6c76c2a1ea9ff27e24.zip |
Fix a typo in the i2d_TYPE_fp documentation
Thanks to Michael Mueller on the openssl-users list for the suggested
improvement.
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/12338)
Diffstat (limited to '')
-rw-r--r-- | doc/man3/d2i_X509.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/d2i_X509.pod b/doc/man3/d2i_X509.pod index 4dea774fb6..fdf6c1d669 100644 --- a/doc/man3/d2i_X509.pod +++ b/doc/man3/d2i_X509.pod @@ -453,7 +453,7 @@ the encoding of the structure I<a> to BIO I<bp> and it returns 1 for success and 0 for failure. B<i2d_I<TYPE>_fp>() is similar to B<i2d_I<TYPE>>() except it writes -the encoding of the structure I<a> to BIO I<bp> and it +the encoding of the structure I<a> to FILE pointer I<fp> and it returns 1 for success and 0 for failure. These routines do not encrypt private keys and therefore offer no |