]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add REJECT keyword
authorTed Lemon <source@isc.org>
Mon, 2 Jun 1997 22:30:52 +0000 (22:30 +0000)
committerTed Lemon <source@isc.org>
Mon, 2 Jun 1997 22:30:52 +0000 (22:30 +0000)
common/conflex.c

index 64cc8eb3ff81a92af1b78f63fe2ca7323b219680..3e43341ba6582dfe0581b59ee60187dfa08e147a 100644 (file)
@@ -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"))