Commit dfe7d500ef for openssl.org
commit dfe7d500ef6525e01772a02fbaa321c2a0b6fb77
Author: Arne Schwabe <arne@rfc2549.org>
Date: Wed Mar 25 16:28:46 2026 +0100
Document X509V3_EXT_print API const change in manual page
Commit e75bd84ffc7 made the ext argument of 509V3_EXT_print const
but did not update the man page to match the implementation.
Complements: e75bd84ffc73 "Constify X509_get_ext() and friends.."
Signed-off-by: Arne Schwabe <arne@rfc2549.org>
Reviewed-by: Tomas Mraz <tomas@openssl.foundation>
Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org>
MergeDate: Tue Mar 31 01:01:51 2026
(Merged from https://github.com/openssl/openssl/pull/30595)
diff --git a/doc/man3/X509V3_EXT_print.pod b/doc/man3/X509V3_EXT_print.pod
index 0727d35f88..55f3b8d322 100644
--- a/doc/man3/X509V3_EXT_print.pod
+++ b/doc/man3/X509V3_EXT_print.pod
@@ -8,7 +8,7 @@ X509V3_EXT_print, X509V3_EXT_print_fp - pretty print X509 certificate extensions
#include <openssl/x509v3.h>
- int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent);
+ int X509V3_EXT_print(BIO *out, const X509_EXTENSION *ext, unsigned long flag, int indent);
int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
=head1 DESCRIPTION