diff options
author | Tomek Mrugalski <tomek@isc.org> | 2011-05-12 11:16:41 +0000 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2011-05-12 11:16:41 +0000 |
commit | c616de4f1e634718889fa47901cfbf862753a140 (patch) | |
tree | 90092dcf06bddc6770271fbe0a41bd5450669966 /includes | |
parent | a34feb7d81efdd9a140084d070ce4633572467fb (diff) | |
download | isc-dhcp-c616de4f1e634718889fa47901cfbf862753a140.tar.gz |
Compilation problem with gcc4.5 and omshell.c resolved. [ISC-Bugs #23831]
Diffstat (limited to 'includes')
-rw-r--r-- | includes/dhctoken.h | 8 |
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, |