summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1998-06-08 19:55:06 +0000
committerTed Lemon <source@isc.org>1998-06-08 19:55:06 +0000
commite00438363a78c6edc27ff05bd61819751056aa55 (patch)
tree9089979b229f63b412c8b640cb413acbd30c9b9c
parent35d884de5b812b7cb9e858a1f19bb074cb922aef (diff)
downloadisc-dhcp-e00438363a78c6edc27ff05bd61819751056aa55.tar.gz
Fix stupid bootp botch
-rw-r--r--dhcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcp.c b/dhcp.c
index 848a2641..24243cff 100644
--- a/dhcp.c
+++ b/dhcp.c
@@ -42,7 +42,7 @@
#ifndef lint
static char copyright[] =
-"$Id: dhcp.c,v 1.34.2.7 1997/12/11 20:57:55 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n";
+"$Id: dhcp.c,v 1.34.2.8 1998/06/08 19:55:06 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -866,7 +866,7 @@ void ack_lease (packet, lease, offer, when)
else
nulltp = 0;
- cons_options (packet, &outgoing, options, bufs, nulltp, offer ? 1 : 0);
+ cons_options (packet, &outgoing, options, bufs, nulltp, offer ? 0 : 1);
if (!offer && outgoing.packet_length < BOOTP_MIN_LEN)
outgoing.packet_length = BOOTP_MIN_LEN;