summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2001-01-16 22:50:05 +0000
committerTed Lemon <source@isc.org>2001-01-16 22:50:05 +0000
commit5ec697e605affb7f96aae0d620777c8d4f8d1d26 (patch)
treee65df93280a81c3b90c28991e6bc28132e7aef24 /common
parentc5b5e7d1600975bf04696775c73c086ee8399e01 (diff)
downloadisc-dhcp-5ec697e605affb7f96aae0d620777c8d4f8d1d26.tar.gz
Add 'new' token
Diffstat (limited to 'common')
-rw-r--r--common/conflex.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/conflex.c b/common/conflex.c
index f1251e72..df7a0625 100644
--- a/common/conflex.c
+++ b/common/conflex.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: conflex.c,v 1.85 2001/01/11 23:13:24 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
+"$Id: conflex.c,v 1.86 2001/01/16 22:50:02 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -809,6 +809,8 @@ static enum dhcp_token intern (atom, dfv)
return TOKEN_NULL;
if (!strcasecmp (atom + 1, "ext"))
return TOKEN_NEXT;
+ if (!strcasecmp (atom + 1, "ew"))
+ return TOKEN_NEW;
break;
case 'o':
if (!strcasecmp (atom + 1, "mapi"))