From: Ted Lemon Date: Wed, 3 Feb 1999 23:29:41 +0000 (+0000) Subject: Update to pl10 X-Git-Tag: V2-BETA-1-PATCH-10~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a284fd824747a9a44a79844ffe0721c089ca565;p=thirdparty%2Fdhcp.git Update to pl10 --- diff --git a/README b/README index c3951f047..ca6dfaf3e 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ Internet Software Consortium Dynamic Host Configuration Protocol Distribution - Version 2, Beta 1, Patchlevel 9 + Version 2, Beta 1, Patchlevel 10 February 3, 1998 This is the first Beta release of Version 2 of the Internet Software @@ -46,9 +46,9 @@ information. On Digital Unix, type ``man pfilt''. To build the DHCP Distribution, unpack the compressed tar file using the tar utility and the gzip command - type something like: - zcat dhcp-2.0b1pl9.tar.gz |tar xvf - + zcat dhcp-2.0b1pl10.tar.gz |tar xvf - -Now, cd to the dhcp-2.0b1pl9 subdirectory that you've just created and +Now, cd to the dhcp-2.0b1pl10 subdirectory that you've just created and configure the source tree by typing: ./configure diff --git a/RELNOTES b/RELNOTES index 4defa6183..99f0a05e5 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,6 +1,6 @@ Internet Software Consortium Dynamic Host Configuration Protocol Distribution - Version 2, Beta 1, Patchlevel 9 + Version 2, Beta 1, Patchlevel 10 February 3, 1998 Release Notes @@ -46,6 +46,13 @@ database. This release is not expected to be stable in the near future, and is intended for sites that are in a position to experiment, or for sites that desperately need the new features. + CHANGES FROM VERSION 2.0 BETA 1 PATCHLEVEL 9 + +- Finally fix client PREINIT bug that causes interfaces not specified + on the command line to be preinitialized. If no interfaces are + specified on the command line, all interfaces are still + preinitialized. + CHANGES FROM VERSION 2.0 BETA 1 PATCHLEVEL 8 - Fix socket API fallback setup code, which was causing Linux servers diff --git a/client/dhclient.c b/client/dhclient.c index de12de4b2..fe6e43318 100644 --- a/client/dhclient.c +++ b/client/dhclient.c @@ -56,7 +56,7 @@ #ifndef lint static char ocopyright[] = -"$Id: dhclient.c,v 1.44.2.11 1999/02/03 22:57:05 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhclient.c,v 1.44.2.12 1999/02/03 23:29:39 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -92,7 +92,7 @@ int save_scripts; static char copyright[] = "Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium."; static char arr [] = "All rights reserved."; -static char message [] = "Internet Software Consortium DHCP Client V2.0b1pl9"; +static char message [] = "Internet Software Consortium DHCP Client V2.0b1pl10"; static char contrib [] = "\nPlease contribute if you find this software useful."; static char url [] = "For info, please visit http://www.isc.org/dhcp-contrib.html\n"; diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c index 6c1ca543f..d996e002f 100644 --- a/relay/dhcrelay.c +++ b/relay/dhcrelay.c @@ -42,7 +42,7 @@ #ifndef lint static char ocopyright [] = -"$Id: dhcrelay.c,v 1.9.2.9 1999/02/03 19:39:47 mellon Exp $ Copyright (c) 1997 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcrelay.c,v 1.9.2.10 1999/02/03 23:29:41 mellon Exp $ Copyright (c) 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -76,7 +76,7 @@ struct server_list { static char copyright [] = "Copyright 1997, 1998, 1999 The Internet Software Consortium."; static char arr [] = "All rights reserved."; -static char message [] = "Internet Software Consortium DHCP Relay Agent V2.0b1pl9"; +static char message [] = "Internet Software Consortium DHCP Relay Agent V2.0b1pl10"; static char contrib [] = "\nPlease contribute if you find this software useful."; static char url [] = "For info, please visit http://www.isc.org/dhcp-contrib.html\n"; diff --git a/server/dhcpd.c b/server/dhcpd.c index fc3c1560a..b7f5ea3a6 100644 --- a/server/dhcpd.c +++ b/server/dhcpd.c @@ -42,13 +42,13 @@ #ifndef lint static char ocopyright[] = -"$Id: dhcpd.c,v 1.45.2.8 1999/02/03 19:46:06 mellon Exp $ Copyright 1995, 1996, 1997, 1998 The Internet Software Consortium."; +"$Id: dhcpd.c,v 1.45.2.9 1999/02/03 23:29:40 mellon Exp $ Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium."; #endif static char copyright[] = "Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium."; static char arr [] = "All rights reserved."; -static char message [] = "Internet Software Consortium DHCP Server V2.0b1pl9 "; +static char message [] = "Internet Software Consortium DHCP Server V2.0b1pl10 "; static char contrib [] = "\nPlease contribute if you find this software useful."; static char url [] = "For info, please visit http://www.isc.org/dhcp-contrib.html\n";