summaryrefslogtreecommitdiff
path: root/common/conflex.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/conflex.c')
-rw-r--r--common/conflex.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/conflex.c b/common/conflex.c
index 7184a4aa..405c1c59 100644
--- a/common/conflex.c
+++ b/common/conflex.c
@@ -34,7 +34,7 @@
#ifndef lint
static char copyright[] =
-"$Id: conflex.c,v 1.101 2006/07/22 02:24:16 dhankins Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n";
+"$Id: conflex.c,v 1.101.8.1 2006/08/09 11:26:29 shane Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -1117,6 +1117,8 @@ static enum dhcp_token intern (atom, dfv)
return SUBCLASS;
if (!strcasecmp(atom + 3, "net"))
return SUBNET;
+ if (!strcasecmp(atom + 3, "net6"))
+ return SUBNET6;
if (!strcasecmp(atom + 3, "string"))
return SUBSTRING;
break;