ISC 970605 snapshot
This commit is contained in:
parent
f43910b5eb
commit
1a51a4cc68
|
@ -1,3 +1,10 @@
|
|||
970605
|
||||
|
||||
- Add client-hostname token to lexer so that the parser can use it.
|
||||
Fixes a serious lease database bug.
|
||||
|
||||
- Disable log message on receipt of short ICMP Echo replies.
|
||||
|
||||
970602
|
||||
|
||||
- Added DHCP Client scripts for FreeBSD, Solaris, and Linux, but
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
#ifndef lint
|
||||
static char copyright[] =
|
||||
"$Id: conflex.c,v 1.1.1.2 1997/06/03 02:49:19 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n";
|
||||
"$Id: conflex.c,v 1.1.1.3 1997/06/06 02:18:53 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n";
|
||||
#endif /* not lint */
|
||||
|
||||
#include "dhcpd.h"
|
||||
|
@ -379,6 +379,8 @@ static int intern (atom, dfv)
|
|||
return CIADDR;
|
||||
if (!strcasecmp (atom + 1, "lient-identifier"))
|
||||
return CLIENT_IDENTIFIER;
|
||||
if (!strcasecmp (atom + 1, "lient-hostname"))
|
||||
return CLIENT_HOSTNAME;
|
||||
break;
|
||||
case 'd':
|
||||
if (!strcasecmp (atom + 1, "omain"))
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
#ifndef lint
|
||||
static char ocopyright[] =
|
||||
"$Id: dhcpd.c,v 1.1.1.2 1997/06/03 02:49:57 mellon Exp $ Copyright 1995, 1996 The Internet Software Consortium.";
|
||||
"$Id: dhcpd.c,v 1.1.1.3 1997/06/06 02:19:13 mellon Exp $ Copyright 1995, 1996 The Internet Software Consortium.";
|
||||
#endif
|
||||
|
||||
static char copyright[] =
|
||||
|
|
Loading…
Reference in New Issue