mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-30 13:57:50 +00:00
- A bug in the FQDN universe that added FQDN codes to the NWIP universe's
hash table was repaired. [ISC-Bugs #16395]
This commit is contained in:
parent
5120270750
commit
bdddcb7d96
5
RELNOTES
5
RELNOTES
@ -26,6 +26,11 @@ as well as how to find documentation and report bugs, please consult
|
|||||||
the README file.
|
the README file.
|
||||||
|
|
||||||
|
|
||||||
|
Changes since 3.1.0a1
|
||||||
|
|
||||||
|
- A bug in the FQDN universe that added FQDN codes to the NWIP universe's
|
||||||
|
hash table was repaired.
|
||||||
|
|
||||||
Changes since 3.0 (New Features)
|
Changes since 3.0 (New Features)
|
||||||
|
|
||||||
- A workaround for certain STSN servers that send a mangled domain-name
|
- A workaround for certain STSN servers that send a mangled domain-name
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
static char copyright[] =
|
static char copyright[] =
|
||||||
"$Id: tables.c,v 1.58 2006/07/26 15:43:52 shane Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n";
|
"$Id: tables.c,v 1.59 2006/09/18 17:35:44 dhankins Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include "dhcpd.h"
|
#include "dhcpd.h"
|
||||||
@ -746,7 +746,7 @@ void initialize_common_option_spaces()
|
|||||||
FQDN_HASH_SIZE, MDL))
|
FQDN_HASH_SIZE, MDL))
|
||||||
log_fatal ("Can't allocate fqdn option hash table.");
|
log_fatal ("Can't allocate fqdn option hash table.");
|
||||||
for (i = 0 ; fqdn_options[i].name ; i++) {
|
for (i = 0 ; fqdn_options[i].name ; i++) {
|
||||||
option_code_hash_add(nwip_universe.code_hash,
|
option_code_hash_add(fqdn_universe.code_hash,
|
||||||
&fqdn_options[i].code, 0,
|
&fqdn_options[i].code, 0,
|
||||||
&fqdn_options[i], MDL);
|
&fqdn_options[i], MDL);
|
||||||
option_name_hash_add(fqdn_universe.name_hash,
|
option_name_hash_add(fqdn_universe.name_hash,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user