From cfc62a0651ddc6318310fa756ffca581eb378e43 Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Mon, 6 Mar 2000 20:08:05 +0000 Subject: [PATCH] Add 'zone' keyword. --- common/conflex.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/conflex.c b/common/conflex.c index 097aee5e4..00d088157 100644 --- a/common/conflex.c +++ b/common/conflex.c @@ -22,7 +22,7 @@ #ifndef lint static char copyright[] = -"$Id: conflex.c,v 1.67 2000/02/15 19:40:34 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; +"$Id: conflex.c,v 1.68 2000/03/06 20:08:05 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -928,6 +928,10 @@ static enum dhcp_token intern (atom, dfv) if (!strcasecmp (atom + 1, "xrrset")) return NS_YXRRSET; break; + case 'z': + if (!strcasecmp (atom + 1, "one")) + return ZONE; + break; } return dfv; } -- 2.47.3