2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

Oops, add constant for requesting state

This commit is contained in:
Ted Lemon
2001-01-26 05:56:29 +00:00
parent 69150c8a9c
commit 543ce4f87d
2 changed files with 13 additions and 4 deletions

View File

@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
"$Id: parse.c,v 1.98 2001/01/25 08:23:49 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
"$Id: parse.c,v 1.99 2001/01/26 05:56:29 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -3730,6 +3730,10 @@ int parse_non_binary (expr, cfile, lose, context)
known = S_SELECTING;
goto ns_const;
case REQUEST:
known = S_REQUESTING;
goto ns_const;
case BOUND:
known = S_BOUND;
goto ns_const;