CVS: cvs.openbsd.org: src

Theo Buehler <[email protected]> Tue, 11 Aug 2026 07:14:30 -0600 (MDT)
Newsgroups gmane.os.openbsd.cvs
Message-ID <[email protected]>
CVSROOT:	/cvs
Module name:	src
Changes by:	[email protected]	2026/08/11 07:14:30

Modified files:
	sbin/iked      : ca.c 

Log message:
iked: remove pointless call to X509_get_subject_name()

A deserialized certificate always has a subject, so this check doesn't
do anything useful. This was added in r1.7 (2010) as a mostly cosmetic
return check, and it has been useless since r1.30 (2014) when the subject
variable became unused. A subsequent removal of subject in r1.66 (2020)
made this look weird (why would you check subject but not issuer, SPKI,
...?), so garbage collect it.

ok hshoexer