From: David Hankins Date: Wed, 8 Oct 2008 16:26:42 +0000 (+0000) Subject: - A bug cleaning up unknown-xxx temporary option definitions was fixed. X-Git-Tag: v4_1_0b1~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=399d3dbe291579f9cda4407bebaf0188724e48a2;p=thirdparty%2Fdhcp.git - A bug cleaning up unknown-xxx temporary option definitions was fixed. [ISC-Bugs #18735] --- diff --git a/RELNOTES b/RELNOTES index 7132b764f..64cfb2a11 100644 --- a/RELNOTES +++ b/RELNOTES @@ -65,6 +65,8 @@ work on other platforms. Please report any problems and suggested fixes to - Failover BNDUPD messages are now discarded if they conflict with an update that has been trasnmitted, but not acknowledged. +- A bug cleaning up unknown-xxx temporary option definitions was fixed. + Changes since 4.1.0a1 - Corrected list of failover state values in dhcpd man page. diff --git a/common/parse.c b/common/parse.c index a781f3f7b..11092ed92 100644 --- a/common/parse.c +++ b/common/parse.c @@ -1215,7 +1215,7 @@ parse_option_name (cfile, allocate, known, opt) option = new_option(val, MDL); option->universe = universe; option->code = code; - option->format = "X"; + option->format = default_option_format; option_reference(opt, option, MDL); } else log_info("option %s has been redefined as option %s. "