From: Ted Lemon Date: Wed, 28 Jun 2000 23:35:45 +0000 (+0000) Subject: Fix parameters for dynamic bootp lease limits. X-Git-Tag: V3-BETA-2-PATCH-1~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c79ded606f3a4f165f26fb5933f1b7e55f7a2154;p=thirdparty%2Fdhcp.git Fix parameters for dynamic bootp lease limits. --- diff --git a/server/stables.c b/server/stables.c index 95b7c133e..573812616 100644 --- a/server/stables.c +++ b/server/stables.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: stables.c,v 1.14 2000/06/07 00:32:55 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; +"$Id: stables.c,v 1.15 2000/06/28 23:35:45 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -449,8 +449,8 @@ struct option server_options [256] = { { "default-lease-time", "T", &server_universe, 1 }, { "max-lease-time", "T", &server_universe, 2 }, { "min-lease-time", "T", &server_universe, 3 }, - { "dynamic-bootp-lease-cutoff", "L", &server_universe, 4 }, - { "dynamic-bootp-lease-length", "T", &server_universe, 5 }, + { "dynamic-bootp-lease-cutoff", "T", &server_universe, 4 }, + { "dynamic-bootp-lease-length", "L", &server_universe, 5 }, { "boot-unknown-clients", "f", &server_universe, 6 }, { "dynamic-bootp", "f", &server_universe, 7 }, { "allow-bootp", "f", &server_universe, 8 },