summaryrefslogtreecommitdiff
path: root/includes/dhctoken.h
diff options
context:
space:
mode:
authorTomek Mrugalski <tomek@isc.org>2011-05-12 11:16:41 +0000
committerTomek Mrugalski <tomek@isc.org>2011-05-12 11:16:41 +0000
commitc616de4f1e634718889fa47901cfbf862753a140 (patch)
tree90092dcf06bddc6770271fbe0a41bd5450669966 /includes/dhctoken.h
parenta34feb7d81efdd9a140084d070ce4633572467fb (diff)
downloadisc-dhcp-c616de4f1e634718889fa47901cfbf862753a140.tar.gz
Compilation problem with gcc4.5 and omshell.c resolved. [ISC-Bugs #23831]
Diffstat (limited to 'includes/dhctoken.h')
-rw-r--r--includes/dhctoken.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/includes/dhctoken.h b/includes/dhctoken.h
index 5bc1e0b6..1d0c9e78 100644
--- a/includes/dhctoken.h
+++ b/includes/dhctoken.h
@@ -3,8 +3,8 @@
Tokens for config file lexer and parser. */
/*
- * Copyright (c) 2004,2007-2009,2011 by
- * Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2011 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004,2007-2009 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1996-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
@@ -47,12 +47,14 @@ enum dhcp_token {
TILDE = '~',
BANG = '!',
PERCENT = '%',
- PLUS = '+',
+ PLUS = '+',
MINUS = '-',
ASTERISK = '*',
AMPERSAND = '&',
PIPE = '|',
CARET = '^',
+ ENDOFLINE = '\n',
+ QUESTIONMARK = '?',
HOST = 256,
FIRST_TOKEN = HOST,