From: Arne Schwabe Date: Wed, 25 Mar 2026 15:28:46 +0000 (+0100) Subject: Document X509V3_EXT_print API const change in manual page X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfe7d500ef6525e01772a02fbaa321c2a0b6fb77;p=thirdparty%2Fopenssl.git 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 Reviewed-by: Tomas Mraz Reviewed-by: Eugene Syromiatnikov 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 0727d35f88e..55f3b8d322b 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 - 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