CVSROOT: /cvs Module name: src Changes by: k...@cvs.openbsd.org 2014/10/29 09:28:51
Modified files: sbin/dhclient : convert.c dhclient.c dhcpd.h Log message: Calling a function to htonl() a constant 32-bit value into a stack variable and memcpy() that value into 4 bytes of malloc()'d space seems roundabout. Just memcpy() a four byte constant string into the malloc()'d space as required and kill putULong(). No functional change.