summaryrefslogtreecommitdiff
path: root/dhctoken.h
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1996-02-06 20:25:56 +0000
committerTed Lemon <source@isc.org>1996-02-06 20:25:56 +0000
commit089fb364df713c0137aeecd78025a2ab4459d97c (patch)
tree85b0eff2ba9d4741aab9ced054fe8fe8004c99f3 /dhctoken.h
parentbbeaeedce37da53c2190387b700290aacb3ad871 (diff)
downloadisc-dhcp-089fb364df713c0137aeecd78025a2ab4459d97c.tar.gz
More portable internet addresses; fix endian bug; fix parser bugs
Diffstat (limited to 'dhctoken.h')
-rw-r--r--dhctoken.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhctoken.h b/dhctoken.h
index 04f057ef..1f211f17 100644
--- a/dhctoken.h
+++ b/dhctoken.h
@@ -66,6 +66,6 @@
#define LAST_TOKEN RANGE
#define is_identifier(x) ((x) >= FIRST_TOKEN && \
- (x) <= FIRST_TOKEN && \
+ (x) <= LAST_TOKEN && \
(x) != STRING && \
(x) != NUMBER)