From: Thomas Markwalder Date: Tue, 20 Oct 2015 19:22:11 +0000 (-0400) Subject: [master] Corrected reverse-ordered RELNOTES entries after 4.3.3 X-Git-Tag: v4_3_4~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=555093daef4124a3a648811f6168abe7c1728521;p=thirdparty%2Fdhcp.git [master] Corrected reverse-ordered RELNOTES entries after 4.3.3 --- diff --git a/RELNOTES b/RELNOTES index d7d41d2cb..e6b1a5f2a 100644 --- a/RELNOTES +++ b/RELNOTES @@ -54,30 +54,22 @@ by Eric Young (eay@cryptsoft.com). Changes since 4.3.3 -- Added a parameter, authoring-byte-order, to the lease file. This value - is automatically added to the top of new lease files by the server and - indicates the internal byte order (big endian or little endian) of the - server. This permits lease files generated on a server with one form of - byte order to be used on a server with the opposite form. Our thanks to - Timothe Litt for calling this to our attention and for the suggestions - he provided. - [ISC-Bugs #38396] - -- Added dhcpv6 and delayed-ack to settings listed in the "Features:" - section of the configure script output. Additionally, all of the - features reported on will now always show either a "yes" or "no" - value. Prior to this features left to their default setting would - not show a value. - [ISC-Bugs #40381] +- Corrected a static analyzer warning in common/execute.c + [ISC-Bugs #40374] -- Added the lease address to the end of the debug level log message - emitted when an existing lease is renewed within the dhcp-cache-threshold. - Thanks to Nathan Neulinger at Missouri S&T for suggesting the change. - [ISC-Bugs #40598] +- ISC DHCP now follows the common convention to use the base name a + program is invoked with (aka argv[0], vs. a builtin name) for + logs. This should help differentiate syslog entires for DHCPv4 and + DHCPv6 servers. You can define OLD_LOG_NAME in includes/site.h to + keep the previous behavior. + [ISC-Bugs #38692] -- Corrected compilation errors that prohibited building the server - and its ATF unit tests when failover is disabled. - [ISC-Bugs #40372] +- The linux packet filter code now correctly treats only least significant + 12 bits an inbound packet's TCI value as the VLAN id (per IEEE 802.1Q). + Prior to this it was using the entire 16 bit value as the VLAN id and + incorrectly discarding packets. Thanks to Jiri Popelka at Red Hat for + reporting this issue and supplying its patch. + [ISC-Bugs #40591] - Fixed several issues static analysis issues such as potential null references, unchecked strdup returns. Thanks to Bill Parker (wp02855 at @@ -86,22 +78,30 @@ by Eric Young (eay@cryptsoft.com). [ISC-Bugs #40754] [ISC-Bugs #40823] -- The linux packet filter code now correctly treats only least significant - 12 bits an inbound packet's TCI value as the VLAN id (per IEEE 802.1Q). - Prior to this it was using the entire 16 bit value as the VLAN id and - incorrectly discarding packets. Thanks to Jiri Popelka at Red Hat for - reporting this issue and supplying its patch. - [ISC-Bugs #40591] +- Corrected compilation errors that prohibited building the server + and its ATF unit tests when failover is disabled. + [ISC-Bugs #40372] -- Corrected a static analyzer warning in common/execute.c - [ISC-Bugs #40374] +- Added the lease address to the end of the debug level log message + emitted when an existing lease is renewed within the dhcp-cache-threshold. + Thanks to Nathan Neulinger at Missouri S&T for suggesting the change. + [ISC-Bugs #40598] -- ISC DHCP now follows the common convention to use the base name a - program is invoked with (aka argv[0], vs. a builtin name) for - logs. This should help differentiate syslog entires for DHCPv4 and - DHCPv6 servers. You can define OLD_LOG_NAME in includes/site.h to - keep the previous behavior. - [ISC-Bugs #38692] +- Added dhcpv6 and delayed-ack to settings listed in the "Features:" + section of the configure script output. Additionally, all of the + features reported on will now always show either a "yes" or "no" + value. Prior to this features left to their default setting would + not show a value. + [ISC-Bugs #40381] + +- Added a parameter, authoring-byte-order, to the lease file. This value + is automatically added to the top of new lease files by the server and + indicates the internal byte order (big endian or little endian) of the + server. This permits lease files generated on a server with one form of + byte order to be used on a server with the opposite form. Our thanks to + Timothe Litt for calling this to our attention and for the suggestions + he provided. + [ISC-Bugs #38396] Changes since 4.3.3b1 - None