Mercurial > hg > dhcpcd
changeset 97:f1ba63faf6ca draft
dhcpcd-3.0.17
| author | Roy Marples <roy@marples.name> |
|---|---|
| date | Sat, 14 Apr 2007 07:53:33 +0000 |
| parents | 408d14b6e643 |
| children | f1c783988dd2 |
| files | ChangeLog Makefile dhcp.c |
| diffstat | 3 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Apr 13 23:59:24 2007 +0000 +++ b/ChangeLog Sat Apr 14 07:53:33 2007 +0000 @@ -1,3 +1,4 @@ +dhcpcd-3.0.17 Minimum message size is now 300 bytes for crappy DHCP servers who think they have to obey the BOOTP minimum message size :/ Compile ok on OpenBSD (thanks to icezimm and reb in #gentoo-bsd for testing)
--- a/Makefile Fri Apr 13 23:59:24 2007 +0000 +++ b/Makefile Sat Apr 14 07:53:33 2007 +0000 @@ -1,4 +1,4 @@ -VERSION = 3.0.17_pre2 +VERSION = 3.0.17 CFLAGS ?= -O2 -pipe # Should work for both GNU make and BSD make
--- a/dhcp.c Fri Apr 13 23:59:24 2007 +0000 +++ b/dhcp.c Sat Apr 14 07:53:33 2007 +0000 @@ -255,7 +255,6 @@ #endif message_length = p - m; - logger (LOG_DEBUG, "xx %d\n", message_length); memset (&packet, 0, sizeof (struct udp_dhcp_packet)); make_dhcp_packet (&packet, (unsigned char *) &message, message_length,
