summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2015-01-29 15:47:37 -0500
committerThomas Markwalder <tmark@isc.org>2015-01-29 15:47:37 -0500
commit4d9b81fc10e19bf82679ce121031e210afc81f6e (patch)
tree7f8eabf77edb1022f9ab66d9a6db7c5d45a3f444
parentc2b5b5e8d424aecf8ea2bd9fc0c48d3de7fd77c2 (diff)
downloadisc-dhcp-4d9b81fc10e19bf82679ce121031e210afc81f6e.tar.gz
[master] Versioning updates for v4.3.2b1
-rw-r--r--README10
-rw-r--r--RELNOTES22
-rw-r--r--configure.ac2
-rw-r--r--relay/dhcrelay.c2
-rw-r--r--util/bind.sh1
5 files changed, 20 insertions, 17 deletions
diff --git a/README b/README
index f1dcfadf..23449eb8 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
Internet Systems Consortium DHCP Distribution
- Version 4.3.2.pre-beta
- 08 January 2015
+ Version 4.3.2b1
+ 29 January 2015
README FILE
@@ -141,12 +141,12 @@ 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:
- gunzip dhcp-4.3.1.tar.gz
- tar xvf dhcp-4.3.1.tar
+ gunzip dhcp-4.3.2b1.tar.gz
+ tar xvf dhcp-4.3.2b1.tar
CONFIGURING IT
-Now, cd to the dhcp-4.3.1 subdirectory that you've just created and
+Now, cd to the dhcp-4.3.2b1 subdirectory that you've just created and
configure the source tree by typing:
./configure
diff --git a/RELNOTES b/RELNOTES
index aff13dd2..00e5d6ee 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,5 +1,5 @@
Internet Systems Consortium DHCP Distribution
- Version 4.3.2.pre-beta
+ Version 4.3.2b1
08 January 2015
Release Notes
@@ -52,6 +52,17 @@ ISC DHCP is open source software maintained by Internet Systems
Consortium. This product includes cryptographic software written
by Eric Young (eay@cryptsoft.com).
+ Changes since 4.3.2.pre-beta
+
+- Corrected inconsistencies in dhcrelay's setting the upper interface hop count
+ limit such that it now sets it to 32 when the upstream address is a multicast
+ address per RFC 3315 Section 20. Prior to this if the -u argument preceded
+ the -l argument on the command line or if the same interface was specified
+ for both; the logic to set the hop limit count for the upper interface was
+ skipped. This caused the hop count limit to be set to the default value
+ (typically 1) in the outbound upstream packets.
+ [ISC-Bugs #37426]
+
Changes since 4.3.1
- Corrected parser's right brace matching when a statement contains an error.
@@ -246,15 +257,6 @@ by Eric Young (eay@cryptsoft.com).
[ISC-Bugs #36780]
[ISC-Bugs #32228]
-- Corrected inconsistencies in dhcrelay's setting the upper interface hop count
- limit such that it now sets it to 32 when the upstream address is a multicast
- address per RFC 3315 Section 20. Prior to this if the -u argument preceded
- the -l argument on the command line or if the same interface was specified
- for both; the logic to set the hop limit count for the upper interface was
- skipped. This caused the hop count limit to be set to the default value
- (typically 1) in the outbound upstream packets.
- [ISC-Bugs #37426]
-
Changes since 4.3.1b1
- Modify the linux and openwrt dhclient scripts to process information
diff --git a/configure.ac b/configure.ac
index d829f5c7..5c74f206 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([DHCP],[4.3.2.pre-beta],[dhcp-users@isc.org])
+AC_INIT([DHCP],[4.3.2b1],[dhcp-users@isc.org])
# we specify "foreign" to avoid having to have the GNU mandated files,
# like AUTHORS, COPYING, and such
diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c
index 4d1d6fd2..15b49976 100644
--- a/relay/dhcrelay.c
+++ b/relay/dhcrelay.c
@@ -133,7 +133,7 @@ static int strip_relay_agent_options(struct interface_info *,
struct dhcp_packet *, unsigned);
static const char copyright[] =
-"Copyright 2004-2014 Internet Systems Consortium.";
+"Copyright 2004-2015 Internet Systems Consortium.";
static const char arr[] = "All rights reserved.";
static const char message[] =
"Internet Systems Consortium DHCP Relay Agent";
diff --git a/util/bind.sh b/util/bind.sh
index f60750a3..6ac68b5d 100644
--- a/util/bind.sh
+++ b/util/bind.sh
@@ -59,6 +59,7 @@ case $# in
### For ease of use, this records the sticky tag of versions
### released with each point release.
###
+ 4.3.2b1) BINDTAG=v9_9_7rc1 ;;
4.3.2.pre-beta) BINDTAG=v9_9_5_P1 ;;
4.3.1b1|4.3.1rc1|4.3.1) BINDTAG=v9_9_5_P1 ;;
4.3.0) BINDTAG=v9_9_5 ;;