]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Document X509V3_EXT_print API const change in manual page
authorArne Schwabe <arne@rfc2549.org>
Wed, 25 Mar 2026 15:28:46 +0000 (16:28 +0100)
committerEugene Syromiatnikov <esyr@openssl.org>
Tue, 31 Mar 2026 01:01:42 +0000 (03:01 +0200)
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)

doc/man3/X509V3_EXT_print.pod

index 0727d35f88e5639be267442665bac2149d7973e2..55f3b8d322b9ae7d42b3fbfe5307a415cfae37b1 100644 (file)
@@ -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