CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/10/13 12:09:42
Modified files:
usr.sbin/acme-client: revokeproc.c
Log message:
acme-client: stop reaching into X509
Prepare for an upcoming change in libcrypto and retrieve the stack
of extensions via X509_get0_extensions(). Simplify the for loop by
relying on the fact that empty or NULL stacks have an sk_num() of 0
and -1, respectively, so the loop won't be entered and the extsz
dance is unnecessary.
ok florian
