]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
- A bug cleaning up unknown-xxx temporary option definitions was fixed.
authorDavid Hankins <dhankins@isc.org>
Wed, 8 Oct 2008 16:26:42 +0000 (16:26 +0000)
committerDavid Hankins <dhankins@isc.org>
Wed, 8 Oct 2008 16:26:42 +0000 (16:26 +0000)
  [ISC-Bugs #18735]

RELNOTES
common/parse.c

index 7132b764f540645572c60f26385507b7214236c0..64cfb2a119443f7f471fdc28778f74018bcb99ff 100644 (file)
--- 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.
index a781f3f7bd0992ac1de6bd9b211574e1c27d65c7..11092ed92a6bf063b27b063693fabd1b99d96285 100644 (file)
@@ -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.  "