From: Ted Lemon Date: Wed, 10 Mar 1999 20:42:27 +0000 (+0000) Subject: Additional argument to cons_option. X-Git-Tag: V3-ALPHA-19990315~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0527c2e320a87c30ee91f4c10dab49dda7a9622c;p=thirdparty%2Fdhcp.git Additional argument to cons_option. --- diff --git a/server/bootp.c b/server/bootp.c index 014014f9e..c321bdf8c 100644 --- a/server/bootp.c +++ b/server/bootp.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: bootp.c,v 1.39 1999/02/25 23:30:39 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; +"$Id: bootp.c,v 1.40 1999/03/10 20:42:27 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -180,7 +180,7 @@ void bootp (packet) outgoing.packet_length = cons_options (packet, outgoing.raw, 0, &options, (struct agent_options *)0, - 0, 0, 1); + 0, 0, 1, (struct data_string *)0); if (outgoing.packet_length < BOOTP_MIN_LEN) outgoing.packet_length = BOOTP_MIN_LEN; }