From: Ted Lemon Date: Tue, 4 Apr 2000 06:27:35 +0000 (+0000) Subject: STRING -> STRING_TOKEN X-Git-Tag: V3-BETA-2-PATCH-1~270 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef91cb3908144143666bf7981c57974948dbbbc4;p=thirdparty%2Fdhcp.git STRING -> STRING_TOKEN --- diff --git a/common/conflex.c b/common/conflex.c index d13ea2083..fc1130bcd 100644 --- a/common/conflex.c +++ b/common/conflex.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: conflex.c,v 1.69 2000/03/17 03:59:00 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; +"$Id: conflex.c,v 1.70 2000/04/04 06:25:51 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -841,7 +841,7 @@ static enum dhcp_token intern (atom, dfv) if (!strcasecmp (atom + 1, "igned")) return SIGNED; if (!strcasecmp (atom + 1, "tring")) - return STRING; + return STRING_TOKEN; if (!strcasecmp (atom + 1, "uffix")) return SUFFIX; if (!strcasecmp (atom + 1, "earch")) diff --git a/common/parse.c b/common/parse.c index 76ff234a8..28d8291ae 100644 --- a/common/parse.c +++ b/common/parse.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: parse.c,v 1.68 2000/03/18 03:34:05 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; +"$Id: parse.c,v 1.69 2000/04/04 06:27:35 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -1055,7 +1055,7 @@ int parse_option_code_definition (cfile, option) } no_more_in_record = 1; break; - case STRING: + case STRING_TOKEN: type = 'X'; goto no_arrays;