]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add REBOOT token
authorTed Lemon <source@isc.org>
Wed, 5 Mar 1997 06:33:36 +0000 (06:33 +0000)
committerTed Lemon <source@isc.org>
Wed, 5 Mar 1997 06:33:36 +0000 (06:33 +0000)
common/conflex.c

index a13f2660568165fad79859c3e3d3ad3cfd5b4938..fbf0d82828e96d0f01820d6ce600bb03d3d96669 100644 (file)
@@ -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"))