CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/06/11 03:50:49
Modified files:
sbin/isakmpd : message.c
Log message:
isakmpd(8): Fix possible unaligned 32 bit read
When validating IPsec SPIs in a DELETE message, access to the
32 bit SPI value might be unaligned. On platforms requiring strict
alignment, this would cause termination of isakmpd by signal.
To avoid this, memcpy(3) the SPI value to a local variable.
test & ok sthen
