Pull down change from 3.0.1rc7:

- Fix a bug in is_identifier(), where it was checking against EOF
  instead of the END_OF_FILE token.

This is required to eliminate a warning with -fshort-enums.
This commit is contained in:
bjh21 2002-03-18 19:54:11 +00:00
parent 24460e83d2
commit a4f14f6e11

View File

@ -321,4 +321,4 @@ enum dhcp_token {
#define is_identifier(x) ((x) >= FIRST_TOKEN && \
(x) != STRING && \
(x) != NUMBER && \
(x) != EOF)
(x) != END_OF_FILE)