From 34013c402048cf682465c4427b7a53f1d83d6929 Mon Sep 17 00:00:00 2001 From: ps Date: Tue, 13 Jun 2000 09:32:09 +0000 Subject: Correctly set the Maximum DHCP Message Size. bootpd now works again as well as ISC dhcpd. --- sys/nfsclient/bootp_subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/nfsclient') diff --git a/sys/nfsclient/bootp_subr.c b/sys/nfsclient/bootp_subr.c index d580c55..b49fc62 100644 --- a/sys/nfsclient/bootp_subr.c +++ b/sys/nfsclient/bootp_subr.c @@ -847,8 +847,8 @@ bootpc_init(void) */ call.vend[j++]=57; call.vend[j++]=2; - call.vend[j++]=(1200) % 256; call.vend[j++]=(1200) / 256; + call.vend[j++]=(1200) % 256; call.vend[j++]=255; -- cgit v1.1