From: Ted Lemon Date: Mon, 2 Jun 1997 22:30:52 +0000 (+0000) Subject: Add REJECT keyword X-Git-Tag: DHCP-970602~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=36f5381c14abf8d6201e1b754cfb4fa18b9df6b8;p=thirdparty%2Fdhcp.git Add REJECT keyword --- diff --git a/common/conflex.c b/common/conflex.c index 64cc8eb3f..3e43341ba 100644 --- a/common/conflex.c +++ b/common/conflex.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: conflex.c,v 1.26 1997/05/09 07:57:54 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n"; +"$Id: conflex.c,v 1.27 1997/06/02 22:30:52 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -486,6 +486,8 @@ static int intern (atom, dfv) return REBIND; if (!strcasecmp (atom + 1, "eboot")) return REBOOT; + if (!strcasecmp (atom + 1, "eject")) + return REJECT; break; case 's': if (!strcasecmp (atom + 1, "earch"))