]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
CMS_add0_cert.pod: add missing man section numbers in recently added L<fun()> refs
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>
Fri, 24 Feb 2023 13:03:19 +0000 (14:03 +0100)
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>
Fri, 24 Feb 2023 13:03:19 +0000 (14:03 +0100)
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
(Merged from https://github.com/openssl/openssl/pull/20369)

doc/man3/CMS_add0_cert.pod

index eb105d72961f4b1b21c9d0ba4ffd2b64cd0b3b83..fa19532e2efa7bba521eb19f0c3617534f533c08 100644 (file)
@@ -22,8 +22,8 @@ CMS_add0_crl, CMS_add1_crl, CMS_get1_crls
 
 CMS_add0_cert() and CMS_add1_cert() add certificate I<cert> to I<cms>
 unless it is already present.
-This is used by L<CMS_sign_ex()> and L<CMS_sign()> and may be used before
-calling L<CMS_verify()> to help chain building in certificate validation.
+This is used by L<CMS_sign_ex(3)> and L<CMS_sign(3)> and may be used before
+calling L<CMS_verify(3)> to help chain building in certificate validation.
 As the 0 implies, CMS_add0_cert() adds I<cert> internally to I<cms>
 and on success it must not be freed up by the caller.
 In contrast, the caller of CMS_add1_cert() must free I<cert>.
@@ -37,7 +37,7 @@ CMS_get1_certs() returns all certificates in I<cms>.
 CMS_add0_crl() and CMS_add1_crl() add CRL I<crl> to I<cms>.
 I<cms> must be of type signed data or (authenticated) enveloped data.
 For signed data, such a CRL may be used in certificate validation
-with L<CMS_verify()>.
+with L<CMS_verify(3)>.
 It may be given both for inclusion when signing a CMS message
 and when verifying a signed CMS message.