2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 14:25:41 +00:00

Merged rt44950 (MA compat)

This commit is contained in:
Francis Dupont
2017-11-23 17:17:42 +01:00
2 changed files with 7 additions and 0 deletions

View File

@@ -39,6 +39,8 @@ enum dhcp_token {
SLASH = '/',
LBRACE = '{',
RBRACE = '}',
LBRACKET = '[',
RBRACKET = ']',
LPAREN = '(',
RPAREN = ')',
EQUAL = '=',

View File

@@ -812,6 +812,11 @@ int parse_statement (cfile, group, type, host_decl, declaration)
parse_lease_id_format(cfile);
break;
case PERCENT:
/* Used by the MA so simply ignore... */
skip_to_semi (cfile);
break;
default:
et = (struct executable_statement *)0;
lose = 0;