CVSROOT: /cvs Module name: src Changes by: k...@cvs.openbsd.org 2016/10/12 07:36:39
Modified files: usr.sbin/dhcpd : dhcp.c Log message: client_identifier is not a string so using strlen() on it is inappropriate. Which is why client_identifier_len exists. Replace copy&pasted strlen() with client_identifier_len. Symptoms (crash) and cause (bad c&p) spotted by sthen@. tested & ok sthen@