2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

Fix up calls to cons_options.

This commit is contained in:
Ted Lemon
2000-10-10 23:01:05 +00:00
parent c4403423ed
commit 63b935b669

View File

@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
"$Id: bootp.c,v 1.66 2000/09/20 00:06:04 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
"$Id: bootp.c,v 1.67 2000/10/10 23:01:05 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -241,7 +241,8 @@ void bootp (packet)
cons_options (packet, outgoing.raw, lease, 0,
packet -> options, options,
&lease -> scope,
0, 0, 1, (struct data_string *)0);
0, 0, 1, (struct data_string *)0,
(const char *)0);
if (outgoing.packet_length < BOOTP_MIN_LEN)
outgoing.packet_length = BOOTP_MIN_LEN;
}