]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add argument to cons_options
authorTed Lemon <source@isc.org>
Wed, 11 Sep 1996 05:51:25 +0000 (05:51 +0000)
committerTed Lemon <source@isc.org>
Wed, 11 Sep 1996 05:51:25 +0000 (05:51 +0000)
bootp.c
client/dhclient.c
dhclient.c
server/bootp.c

diff --git a/bootp.c b/bootp.c
index 0006b93dbe0047e5550354e074c976aa6f173339..76d4fc8525466a25fc0a6954efdc03818fd4614c 100644 (file)
--- a/bootp.c
+++ b/bootp.c
@@ -42,7 +42,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: bootp.c,v 1.17 1996/08/27 09:33:41 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: bootp.c,v 1.18 1996/09/11 05:50:54 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -184,7 +184,7 @@ void bootp (packet)
        /* Pack the options into the buffer.   Unlike DHCP, we can't
           pack options into the filename and server name buffers. */
 
-       cons_options (packet, &outgoing, options, 0);
+       cons_options (packet, &outgoing, options, 0, 0);
        if (outgoing.packet_length < BOOTP_MIN_LEN)
                outgoing.packet_length = BOOTP_MIN_LEN;
 
index ff22faf0373dbd8a799e3b5f6274303e7699adce..17e712f712d8d00cbd18dfc15dd79eb9589c3c0f 100644 (file)
@@ -42,7 +42,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: dhclient.c,v 1.19 1996/08/29 09:15:35 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: dhclient.c,v 1.20 1996/09/11 05:51:25 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -259,7 +259,7 @@ void send_discover (interface)
        options [DHO_DHCP_MESSAGE] -> tree = (struct tree *)0;
 
        /* Set up the option buffer... */
-       cons_options ((struct packet *)0, &outgoing, options, 0);
+       cons_options ((struct packet *)0, &outgoing, options, 0, 0);
 
        memset (&raw.ciaddr, 0, sizeof raw.ciaddr);
        memset (&raw.siaddr, 0, sizeof raw.siaddr);
@@ -358,7 +358,7 @@ void send_request (packet)
         options [DHO_DHCP_SERVER_IDENTIFIER] -> tree = (struct tree *)0;
 
        /* Set up the option buffer... */
-       cons_options ((struct packet *)0, &outgoing, options, 0);
+       cons_options ((struct packet *)0, &outgoing, options, 0, 0);
 
        memset (&raw.ciaddr, 0, sizeof raw.ciaddr);
        raw.siaddr = packet -> raw -> siaddr;
index ff22faf0373dbd8a799e3b5f6274303e7699adce..17e712f712d8d00cbd18dfc15dd79eb9589c3c0f 100644 (file)
@@ -42,7 +42,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: dhclient.c,v 1.19 1996/08/29 09:15:35 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: dhclient.c,v 1.20 1996/09/11 05:51:25 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -259,7 +259,7 @@ void send_discover (interface)
        options [DHO_DHCP_MESSAGE] -> tree = (struct tree *)0;
 
        /* Set up the option buffer... */
-       cons_options ((struct packet *)0, &outgoing, options, 0);
+       cons_options ((struct packet *)0, &outgoing, options, 0, 0);
 
        memset (&raw.ciaddr, 0, sizeof raw.ciaddr);
        memset (&raw.siaddr, 0, sizeof raw.siaddr);
@@ -358,7 +358,7 @@ void send_request (packet)
         options [DHO_DHCP_SERVER_IDENTIFIER] -> tree = (struct tree *)0;
 
        /* Set up the option buffer... */
-       cons_options ((struct packet *)0, &outgoing, options, 0);
+       cons_options ((struct packet *)0, &outgoing, options, 0, 0);
 
        memset (&raw.ciaddr, 0, sizeof raw.ciaddr);
        raw.siaddr = packet -> raw -> siaddr;
index 0006b93dbe0047e5550354e074c976aa6f173339..76d4fc8525466a25fc0a6954efdc03818fd4614c 100644 (file)
@@ -42,7 +42,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: bootp.c,v 1.17 1996/08/27 09:33:41 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: bootp.c,v 1.18 1996/09/11 05:50:54 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -184,7 +184,7 @@ void bootp (packet)
        /* Pack the options into the buffer.   Unlike DHCP, we can't
           pack options into the filename and server name buffers. */
 
-       cons_options (packet, &outgoing, options, 0);
+       cons_options (packet, &outgoing, options, 0, 0);
        if (outgoing.packet_length < BOOTP_MIN_LEN)
                outgoing.packet_length = BOOTP_MIN_LEN;