From: Ted Lemon Date: Wed, 5 Mar 1997 06:33:36 +0000 (+0000) Subject: Add REBOOT token X-Git-Tag: DHCP-970305~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=296af24c10ddaf65194bc91d4454305917782616;p=thirdparty%2Fdhcp.git Add REBOOT token --- diff --git a/common/conflex.c b/common/conflex.c index a13f26605..fbf0d8282 100644 --- a/common/conflex.c +++ b/common/conflex.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: conflex.c,v 1.22 1997/02/22 12:23:40 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n"; +"$Id: conflex.c,v 1.23 1997/03/05 06:33:36 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -469,6 +469,8 @@ static int intern (atom, dfv) return RENEW; if (!strcasecmp (atom + 1, "ebind")) return REBIND; + if (!strcasecmp (atom + 1, "eboot")) + return REBOOT; break; case 's': if (!strcasecmp (atom + 1, "tarts"))