CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/04/02 20:07:15
Modified files:
usr.sbin/rpki-client: print.c
Log message:
rpki-client: make the X509_NAME *xissuer const
X509_get_issuer_name() isn't const correct in LibreSSL and OpenSSL < 4
and it returns a modifiable X509_NAME *. The xissuer is only passed to
X509_NAME_oneline() which takes a const X509_NAME, so it can be const.
discussed with claudio
