diff options
author | David Hankins <dhankins@isc.org> | 2007-01-05 23:19:22 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2007-01-05 23:19:22 +0000 |
commit | bd2bc2faee0f52efa214a36a1a0b00374af91920 (patch) | |
tree | 197fe0d0172426e05113bfc0046b0420891dbb4d /server | |
parent | a7ee93fe5715be458e80201b794fec30b9f937d3 (diff) | |
download | isc-dhcp-bd2bc2faee0f52efa214a36a1a0b00374af91920.tar.gz |
- A bug was fixed where attempting to permit leasequeries results in a
fatal internal error, "Unable to find server option 49". [ISC-Bugs #16566]
Diffstat (limited to 'server')
-rw-r--r-- | server/stables.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/stables.c b/server/stables.c index 214241cb..60597fd1 100644 --- a/server/stables.c +++ b/server/stables.c @@ -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 } }; |