2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 05:47:45 +00:00

Build fix for BSD.

See RT ticket #16959 for more.
This commit is contained in:
Shane Kerr 2007-06-15 15:02:05 +00:00
parent b8221d9512
commit e847f9833c
2 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,7 @@
#ifndef lint
static char ocopyright[] =
"$Id: dhclient.c,v 1.153 2007/06/07 15:29:30 each Exp $ Copyright (c) 2004-2007 Internet Systems Consortium. All rights reserved.\n";
"$Id: dhclient.c,v 1.154 2007/06/15 15:02:05 shane Exp $ Copyright (c) 2004-2007 Internet Systems Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@ -40,6 +40,7 @@ static char ocopyright[] =
#include <signal.h>
#include <errno.h>
#include <sys/wait.h>
#include <limits.h>
TIME default_lease_time = 43200; /* 12 hours... */
TIME max_lease_time = 86400; /* 24 hours... */

View File

@ -34,7 +34,7 @@
#ifndef lint
static char ocopyright[] =
"$Id: dhcpd.c,v 1.127 2007/06/07 15:29:31 each Exp $ Copyright 2004-2007 Internet Systems Consortium.";
"$Id: dhcpd.c,v 1.128 2007/06/15 15:02:05 shane Exp $ Copyright 2004-2007 Internet Systems Consortium.";
#endif
static char copyright[] =
@ -47,6 +47,7 @@ static char url [] = "For info, please visit http://www.isc.org/sw/dhcp/";
#include <omapip/omapip_p.h>
#include <syslog.h>
#include <errno.h>
#include <limits.h>
static void usage PROTO ((void));