]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add concat keyword.
authorTed Lemon <source@isc.org>
Thu, 6 May 1999 20:13:31 +0000 (20:13 +0000)
committerTed Lemon <source@isc.org>
Thu, 6 May 1999 20:13:31 +0000 (20:13 +0000)
common/conflex.c

index a87a1963a959e69bed2c01904bcb4c4267f5dbde..0584c5f2133de88a5960d35ff182e51ddb110b05 100644 (file)
@@ -22,7 +22,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: conflex.c,v 1.43 1999/04/08 17:46:15 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: conflex.c,v 1.44 1999/05/06 20:13:31 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -398,6 +398,8 @@ static enum dhcp_token intern (atom, dfv)
                        if (!strcasecmp (atom + 6, "s"))
                                return CLIENTS;
                }
+               if (!strncasecmp (atom + 1, "oncat", 5))
+                       return CONCAT;
                if (!strcasecmp (atom + 1, "ommunications-interrupted"))
                        return COMMUNICATIONS_INTERRUPTED;
                break;