summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNobuhiro IMAI <nov@yo.rim.or.jp>2023-01-10 18:44:44 +0900
committerTomas Mraz <tomas@openssl.org>2023-01-12 10:55:14 +0100
commit5adca946c3b6f779eb593bff6dbefe0a85238d84 (patch)
tree890961e8064d9132a14aa1e630a90e4fd03ecd40
parenta509b97d2c4efd96e231913d49544ac7cb36b51b (diff)
fix manpage of `d2i_X509(3)`
* capitalize `X509_NAME` * add missing suffixes to `i2d_TYPE` CLA: trivial Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20016)
-rw-r--r--doc/man3/d2i_X509.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/d2i_X509.pod b/doc/man3/d2i_X509.pod
index 2bb1522f05..ed9ed062d2 100644
--- a/doc/man3/d2i_X509.pod
+++ b/doc/man3/d2i_X509.pod
@@ -469,7 +469,7 @@ Represents an ECDSA signature.
Represents an B<AlgorithmIdentifier> structure as used in IETF RFC 6960 and
elsewhere.
-=item B<X509_Name>
+=item B<X509_NAME>
Represents a B<Name> type as used for subject and issuer names in
IETF RFC 6960 and elsewhere.
@@ -588,7 +588,7 @@ fixed in future so code should not assume that B<i2d_I<TYPE>>() will
always succeed.
Any function which encodes a structure (B<i2d_I<TYPE>>(),
-B<i2d_I<TYPE>>() or B<i2d_I<TYPE>>()) may return a stale encoding if the
+B<i2d_I<TYPE>_bio>() or B<i2d_I<TYPE>_fp>()) may return a stale encoding if the
structure has been modified after deserialization or previous
serialization. This is because some objects cache the encoding for
efficiency reasons.