diff options
author | Nobuhiro IMAI <nov@yo.rim.or.jp> | 2023-01-10 10:44:44 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2023-01-12 10:55:14 +0100 |
commit | 5adca946c3b6f779eb593bff6dbefe0a85238d84 (patch) | |
tree | 890961e8064d9132a14aa1e630a90e4fd03ecd40 /doc | |
parent | Do not check definition of a macro and use it in a single condition (diff) | |
download | openssl-5adca946c3b6f779eb593bff6dbefe0a85238d84.tar.xz openssl-5adca946c3b6f779eb593bff6dbefe0a85238d84.zip |
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)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man3/d2i_X509.pod | 4 |
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. |