summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2017-07-05 11:34:14 -0400
committerThomas Markwalder <tmark@isc.org>2017-07-05 11:34:14 -0400
commit0c15b25356e840777f5933a9e99c4aa0e28b052a (patch)
tree9334f90bf6192fac2b3a6a454ebb16bb9464330d
parent1ce96b68bfd358c224972e42ec025abb94568855 (diff)
downloadisc-dhcp-0c15b25356e840777f5933a9e99c4aa0e28b052a.tar.gz
[v4_1_esv] Pre-release tag prep for 4.1-ESV-R15b1: version #, copyright etc...
-rw-r--r--LICENSE2
-rw-r--r--README12
-rw-r--r--RELNOTES6
-rw-r--r--client/dhclient.conf.52
-rw-r--r--common/options.c2
-rw-r--r--common/packet.c2
-rw-r--r--common/socket.c2
-rw-r--r--configure.ac2
-rw-r--r--omapip/alloc.c4
-rw-r--r--omapip/generic.c2
-rw-r--r--relay/dhcrelay.c4
-rw-r--r--server/confpars.c2
-rw-r--r--server/dhcpd.c2
-rw-r--r--server/dhcpv6.c2
14 files changed, 22 insertions, 24 deletions
diff --git a/LICENSE b/LICENSE
index f9fd7d6c..a8de3ed4 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-# Copyright (c) 2004-2016 by Internet Systems Consortium, Inc. ("ISC")
+# Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
# Copyright (c) 1995-2003 by Internet Software Consortium
#
# Permission to use, copy, modify, and distribute this software for any
diff --git a/README b/README
index 8ef9cfd6..55b04b49 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
Internet Systems Consortium DHCP Distribution
- Version 4.1-ESV-R14
- 5 October 2016
+ Version 4.1-ESV-R15b1
+ 14 July 2017
README FILE
@@ -98,7 +98,7 @@ directory, it may not have up-to-date information).
RELEASE STATUS
-This is ISC DHCP 4.1-ESV-R14, an extended support (ESV) release that
+This is ISC DHCP 4.1-ESV-R15b1, an extended support (ESV) release that
provides patches for several bugs.
ESVs are intended for users who have longer upgrade constraints
@@ -139,12 +139,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.1-ESV-R14.tar.gz
- tar xvf dhcp-4.1-ESV-R14.tar
+ gunzip dhcp-4.1-ESV-R15b1.tar.gz
+ tar xvf dhcp-4.1-ESV-R15b1.tar
CONFIGURING IT
-Now, cd to the dhcp-4.1-ESV-R14 subdirectory that you've just created and
+Now, cd to the dhcp-4.1-ESV-R15b1 subdirectory that you've just created and
configure the source tree by typing:
./configure
diff --git a/RELNOTES b/RELNOTES
index 061b056e..21e54970 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,13 +1,13 @@
Internet Systems Consortium DHCP Distribution
- Version 4.1-ESV-R14
- 5 October 2016
+ Version 4.1-ESV-R15b1
+ 14 July 2017
Release Notes
NEW FEATURES
-Version 4.1-ESV-R14b1 is a maintenance release of an extended support version
+Version 4.1-ESV-R15b1 is a maintenance release of an extended support version
(ESV) release. ESVs are intended for users who have longer upgrade
constraints. Please see our web page
http://www.isc.org/downloads/software-support-policy/
diff --git a/client/dhclient.conf.5 b/client/dhclient.conf.5
index 21e782ae..cf272aa6 100644
--- a/client/dhclient.conf.5
+++ b/client/dhclient.conf.5
@@ -1,6 +1,6 @@
.\" $Id: dhclient.conf.5,v 1.22.64.7.6.3 2012/04/16 17:18:22 sar Exp $
.\"
-.\" Copyright (c) 2004-2016 by Internet Systems Consortium, Inc. ("ISC")
+.\" Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
.\" Copyright (c) 1996-2003 by Internet Software Consortium
.\"
.\" Permission to use, copy, modify, and distribute this software for any
diff --git a/common/options.c b/common/options.c
index 8a89bce9..cd232284 100644
--- a/common/options.c
+++ b/common/options.c
@@ -3,7 +3,7 @@
DHCP options parsing and reassembly. */
/*
- * Copyright (c) 2004-2016 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1995-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/common/packet.c b/common/packet.c
index 52b925c8..57f39d9f 100644
--- a/common/packet.c
+++ b/common/packet.c
@@ -3,7 +3,7 @@
Packet assembly code, originally contributed by Archie Cobbs. */
/*
- * Copyright (c) 2004-2016 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1996-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/common/socket.c b/common/socket.c
index 0f5af494..3fe3d096 100644
--- a/common/socket.c
+++ b/common/socket.c
@@ -3,7 +3,7 @@
BSD socket interface code... */
/*
- * Copyright (c) 2004-2015 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1995-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/configure.ac b/configure.ac
index b0d5edfb..12293a38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([DHCP], [4.1-ESV-R15-dev], [dhcp-users@isc.org])
+AC_INIT([DHCP], [4.1-ESV-R15b1], [dhcp-users@isc.org])
# we specify "foreign" to avoid having to have the GNU mandated files,
# like AUTHORS, COPYING, and such
diff --git a/omapip/alloc.c b/omapip/alloc.c
index 800bca73..27252c50 100644
--- a/omapip/alloc.c
+++ b/omapip/alloc.c
@@ -4,9 +4,7 @@
protocol... */
/*
- * Copyright (c) 2012,2014,2016 by Internet Systems Consortium, Inc. ("ISC")
- * Copyright (c) 2009-2010 by Internet Systems Consortium, Inc. ("ISC")
- * Copyright (c) 2004-2007 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1999-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/omapip/generic.c b/omapip/generic.c
index fe394ca8..b9e01ca3 100644
--- a/omapip/generic.c
+++ b/omapip/generic.c
@@ -3,7 +3,7 @@
Subroutines that support the generic object. */
/*
- * Copyright (c) 2004-2007,2009,2014 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1999-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c
index 704a6b6e..6ef858bf 100644
--- a/relay/dhcrelay.c
+++ b/relay/dhcrelay.c
@@ -3,7 +3,7 @@
DHCP/BOOTP Relay Agent. */
/*
- * Copyright(c) 2004-2016 by Internet Systems Consortium, Inc.("ISC")
+ * Copyright(c) 2004-2017 by Internet Systems Consortium, Inc.("ISC")
* Copyright(c) 1997-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
@@ -126,7 +126,7 @@ static int strip_relay_agent_options(struct interface_info *,
static void request_v4_interface(const char* name, int flags);
static const char copyright[] =
-"Copyright 2004-2016 Internet Systems Consortium.";
+"Copyright 2004-2017 Internet Systems Consortium.";
static const char arr[] = "All rights reserved.";
static const char message[] =
"Internet Systems Consortium DHCP Relay Agent";
diff --git a/server/confpars.c b/server/confpars.c
index 889aa283..26fea5d7 100644
--- a/server/confpars.c
+++ b/server/confpars.c
@@ -3,7 +3,7 @@
Parser for dhcpd config file... */
/*
- * Copyright (c) 2004-2016 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1995-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/server/dhcpd.c b/server/dhcpd.c
index f81fedd4..bc4688c6 100644
--- a/server/dhcpd.c
+++ b/server/dhcpd.c
@@ -27,7 +27,7 @@
*/
static const char copyright[] =
-"Copyright 2004-2016 Internet Systems Consortium.";
+"Copyright 2004-2017 Internet Systems Consortium.";
static const char arr [] = "All rights reserved.";
static const char message [] = "Internet Systems Consortium DHCP Server";
static const char url [] =
diff --git a/server/dhcpv6.c b/server/dhcpv6.c
index 77bad87e..49b55c74 100644
--- a/server/dhcpv6.c
+++ b/server/dhcpv6.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2006-2016 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006-2017 by Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above