]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
- A bug was fixed where attempting to permit leasequeries results in a
authorDavid Hankins <dhankins@isc.org>
Fri, 5 Jan 2007 23:19:22 +0000 (23:19 +0000)
committerDavid Hankins <dhankins@isc.org>
Fri, 5 Jan 2007 23:19:22 +0000 (23:19 +0000)
  fatal internal error, "Unable to find server option 49". [ISC-Bugs #16566]

RELNOTES
server/stables.c

index c3466a99f7a8637123d3655c12384182ccdeb4f0..b67310663bd33414e09e6ab6099ac44a08b20bbe 100644 (file)
--- a/RELNOTES
+++ b/RELNOTES
@@ -26,6 +26,11 @@ as well as how to find documentation and report bugs, please consult
 the README file.
 
 
+                       Changes since 3.1.0a2
+
+- A bug was fixed where attempting to permit leasequeries results in a
+  fatal internal error, "Unable to find server option 49".
+
                        Changes since 3.1.0a1
 
 - A bug in the FQDN universe that added FQDN codes to the NWIP universe's
index 214241cb1db71aa8340e4844dccc620b1c4f1629..60597fd1dac2fded7bcc96c648aa357922893980 100644 (file)
@@ -34,7 +34,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: stables.c,v 1.34 2006/10/27 22:54:13 dhankins Exp $ Copyright (c) 2004 Internet Systems Consortium.  All rights reserved.\n";
+"$Id: stables.c,v 1.35 2007/01/05 23:19:22 dhankins Exp $ Copyright (c) 2004 Internet Systems Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -234,6 +234,7 @@ static struct option server_options[] = {
        { "ping-timeout", "T",                  &server_universe,  46, 1 },
        { "infinite-is-reserved", "f",          &server_universe,  47, 1 },
        { "update-conflict-detection", "f",     &server_universe,  48, 1 },
+       { "leasequery", "f",                    &server_universe,  49, 1 },
        { "adaptive-lease-time-threshold", "B", &server_universe,  50, 1 },
        { NULL, NULL, NULL, 0, 0 }
 };