Skip to content

Commit b2d5d63

Browse files
committed
[v4_1_esv] Pre-release tag prep for 4.1-ESV-R16: version #, copyright etc...
Changes to be committed: modified: LICENSE modified: README modified: RELNOTES modified: client/dhclient.c modified: common/discover.c modified: configure.ac modified: relay/dhcrelay.c modified: relay/tests/relay_unittests.c modified: server/dhcpd.c
1 parent 2d00b7b commit b2d5d63

File tree

9 files changed

+26
-21
lines changed

9 files changed

+26
-21
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
1+
# Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
22
# Copyright (c) 1995-2003 by Internet Software Consortium
33
#
44
# Permission to use, copy, modify, and distribute this software for any

README

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Internet Systems Consortium DHCP Distribution
2-
Version 4.1-ESV-R16b1
3-
18 December 2019
2+
Version 4.1-ESV-R16
3+
01 January 2020
44

55
README FILE
66

@@ -98,7 +98,7 @@ directory, it may not have up-to-date information).
9898

9999
RELEASE STATUS
100100

101-
This is ISC DHCP 4.1-ESV-R16b1, an extended support (ESV) release that
101+
This is ISC DHCP 4.1-ESV-R16, an extended support (ESV) release that
102102
provides patches for several bugs.
103103

104104
ESVs are intended for users who have longer upgrade constraints
@@ -139,12 +139,12 @@ information. On Digital Unix, type ``man pfilt''.
139139
To build the DHCP Distribution, unpack the compressed tar file using
140140
the tar utility and the gzip command - type something like:
141141

142-
gunzip dhcp-4.1-ESV-R16b1.tar.gz
143-
tar xvf dhcp-4.1-ESV-R16b1.tar
142+
gunzip dhcp-4.1-ESV-R16.tar.gz
143+
tar xvf dhcp-4.1-ESV-R16.tar
144144

145145
CONFIGURING IT
146146

147-
Now, cd to the dhcp-4.1-ESV-R16b1 subdirectory that you've just created and
147+
Now, cd to the dhcp-4.1-ESV-R16 subdirectory that you've just created and
148148
configure the source tree by typing:
149149

150150
./configure

RELNOTES

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
Internet Systems Consortium DHCP Distribution
22

3-
Version 4.1-ESV-R16b1
4-
18 December 2019
3+
Version 4.1-ESV-R16
4+
01 January 2020
55

66
Release Notes
77

88
NEW FEATURES
99

10-
Version 4.1-ESV-R16b1 is a maintenance release of an extended support version
10+
Version 4.1-ESV-R16 is a maintenance release of an extended support version
1111
(ESV) release. ESVs are intended for users who have longer upgrade
12-
constraints. Please see our web page
12+
constraints. Please see our web page:
13+
1314
http://www.isc.org/downloads/software-support-policy/
15+
1416
for more information on ESVs.
1517

1618
ISC DHCP 4.1.x includes several new DHCPv6 features that were not included

client/dhclient.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
DHCP Client. */
44

55
/*
6-
* Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
6+
* Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
77
* Copyright (c) 1995-2003 by Internet Software Consortium
88
*
99
* Permission to use, copy, modify, and distribute this software for any
@@ -66,7 +66,7 @@ struct data_string default_duid;
6666
#define ASSERT_STATE(state_is, state_shouldbe) {}
6767

6868
static const char copyright[] =
69-
"Copyright 2004-2019 Internet Systems Consortium.";
69+
"Copyright 2004-2020 Internet Systems Consortium.";
7070
static const char arr [] = "All rights reserved.";
7171
static const char message [] = "Internet Systems Consortium DHCP Client";
7272
static const char url [] =

common/discover.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Find and identify the network interfaces. */
44

55
/*
6-
* Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
6+
* Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
77
* Copyright (c) 1995-2003 by Internet Software Consortium
88
*
99
* Permission to use, copy, modify, and distribute this software for any
@@ -39,7 +39,10 @@
3939
# include <net/if6.h>
4040
#endif
4141

42-
struct interface_info *interfaces, *dummy_interfaces, *fallback_interface;
42+
struct interface_info *interfaces = 0;
43+
struct interface_info *dummy_interfaces = 0;
44+
struct interface_info *fallback_interface = 0;
45+
4346
int interfaces_invalidated;
4447
int quiet_interface_discovery;
4548
u_int16_t local_port;

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([DHCP], [4.1-ESV-R16b1], [dhcp-users@isc.org])
1+
AC_INIT([DHCP], [4.1-ESV-R16], [dhcp-users@isc.org])
22

33
# we specify "foreign" to avoid having to have the GNU mandated files,
44
# like AUTHORS, COPYING, and such

relay/dhcrelay.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
DHCP/BOOTP Relay Agent. */
44

55
/*
6-
* Copyright(c) 2004-2019 by Internet Systems Consortium, Inc.("ISC")
6+
* Copyright(c) 2004-2020 by Internet Systems Consortium, Inc.("ISC")
77
* Copyright(c) 1997-2003 by Internet Software Consortium
88
*
99
* Permission to use, copy, modify, and distribute this software for any
@@ -133,7 +133,7 @@ extern int strip_relay_agent_options(struct interface_info *,
133133
static void request_v4_interface(const char* name, int flags);
134134

135135
static const char copyright[] =
136-
"Copyright 2004-2019 Internet Systems Consortium.";
136+
"Copyright 2004-2020 Internet Systems Consortium.";
137137
static const char arr[] = "All rights reserved.";
138138
static const char message[] =
139139
"Internet Systems Consortium DHCP Relay Agent";

relay/tests/relay_unittests.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019 by Internet Systems Consortium, Inc. ("ISC")
2+
* Copyright (c) 2019-2020 by Internet Systems Consortium, Inc. ("ISC")
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

server/dhcpd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
DHCP Server Daemon. */
44

55
/*
6-
* Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
6+
* Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
77
* Copyright (c) 1996-2003 by Internet Software Consortium
88
*
99
* Permission to use, copy, modify, and distribute this software for any
@@ -27,7 +27,7 @@
2727
*/
2828

2929
static const char copyright[] =
30-
"Copyright 2004-2019 Internet Systems Consortium.";
30+
"Copyright 2004-2020 Internet Systems Consortium.";
3131
static const char arr [] = "All rights reserved.";
3232
static const char message [] = "Internet Systems Consortium DHCP Server";
3333
static const char url [] =

0 commit comments

Comments
 (0)