Off by one error in max_leases sanity check. Bug 349, apparently.

This commit is contained in:
Rob Landley 2005-09-01 02:43:39 +00:00
parent ac692b2cf7
commit 37adefc670

View File

@ -88,7 +88,7 @@ int main(int argc, char *argv[])
else server_config.lease = LEASE_TIME;
/* Sanity check */
num_ips = ntohl(server_config.end) - ntohl(server_config.start);
num_ips = ntohl(server_config.end) - ntohl(server_config.start) + 1;
if (server_config.max_leases > num_ips) {
LOG(LOG_ERR, "max_leases value (%lu) not sane, "
"setting to %lu instead",