diff options
author | David Hankins <dhankins@isc.org> | 2004-11-04 20:40:14 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2004-11-04 20:40:14 +0000 |
commit | 6df899eb6ac75e0cd2b58970b3453a889d9cca1a (patch) | |
tree | 1281d84cc62253bb5730a292aaa344c9d2ab0f44 | |
parent | dedbd0f63cf792e11759cbffc8f2cea5767a2e9a (diff) | |
download | isc-dhcp-6df899eb6ac75e0cd2b58970b3453a889d9cca1a.tar.gz |
- README, RELNOTES, version to 3.0.2rc2.
-rw-r--r-- | README | 14 | ||||
-rw-r--r-- | RELNOTES | 7 | ||||
-rw-r--r-- | includes/version.h | 2 |
3 files changed, 14 insertions, 9 deletions
@@ -1,5 +1,5 @@ Internet Systems Consortium DHCP Distribution - Version 3.0.2rc1 + Version 3.0.2rc2 October 12, 2004 README FILE @@ -96,10 +96,10 @@ system. RELEASE STATUS -This is the first beta release of ISC DHCP 3.0 maintenance release 2 -(ISC DHCP 3.0.2). This release seeks only to fix bugs present in -versions 3.0.1 and earlier. No new features have or will be added -in subsequent beta or release candidates of this release. +This is the second release candidate of ISC DHCP 3.0.2. This is a +maintenance release which seeks only to fix bugs present in versions +3.0.1 and earlier. No new features have or will be added in subsequent +release candidates of this release. In this release, the server and relay agent are currently fully functional on NetBSD, Linux systems with kernel version 2.2 or later, @@ -142,14 +142,14 @@ 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-3.0.2b1.tar.gz |tar xvf - + zcat dhcp-3.0.2rc2.tar.gz |tar xvf - On BSD/OS, you have to type gzcat, not zcat, and you may run into similar problems on other operating systems. CONFIGURING IT -Now, cd to the dhcp-3.0.2b1 subdirectory that you've just created and +Now, cd to the dhcp-3.0.2rc2 subdirectory that you've just created and configure the source tree by typing: ./configure @@ -1,5 +1,5 @@ Internet Systems Consortium DHCP Distribution - Version 3.0.2rc1 + Version 3.0.2rc2 October 12, 2004 Release Notes @@ -43,6 +43,11 @@ Murrell at BC Tel Advanced Communications. I'd like to express my thanks to all of these good people here, both for working on the code and for prodding me into improving it. + Changes since 3.0.2rc1 + +- allocate_lease() was rewritten to repair a bug in which the server would + try to allocate an ABANDONED lease when FREE leases were available. + Changes since 3.0.2b1 - Some dhcp-eval.5 manpage formatting was repaired. diff --git a/includes/version.h b/includes/version.h index acbf9c7e..a7bd61b9 100644 --- a/includes/version.h +++ b/includes/version.h @@ -1,3 +1,3 @@ /* Current version of ISC DHCP Distribution. */ -#define DHCP_VERSION "V3.0.2rc1" +#define DHCP_VERSION "V3.0.2rc2" |