From 9ed4b873774aab20024e8ea97abb5815f0fffdab Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Wed, 8 Feb 2017 16:04:07 +0100 Subject: [PATCH] [master] Missing blank line in parsers --- src/bin/dhcp4/dhcp4_parser.yy | 1 + src/bin/dhcp6/dhcp6_parser.yy | 1 + 2 files changed, 2 insertions(+) diff --git a/src/bin/dhcp4/dhcp4_parser.yy b/src/bin/dhcp4/dhcp4_parser.yy index a25c101e01..09b8c09bff 100644 --- a/src/bin/dhcp4/dhcp4_parser.yy +++ b/src/bin/dhcp4/dhcp4_parser.yy @@ -1668,6 +1668,7 @@ debuglevel: DEBUGLEVEL COLON INTEGER { ElementPtr dl(new IntElement($3, ctx.loc2pos(@3))); ctx.stack_.back()->set("debuglevel", dl); }; + severity: SEVERITY { ctx.enter(ctx.NO_KEYWORD); } COLON STRING { diff --git a/src/bin/dhcp6/dhcp6_parser.yy b/src/bin/dhcp6/dhcp6_parser.yy index 76b824a07d..cee5663090 100644 --- a/src/bin/dhcp6/dhcp6_parser.yy +++ b/src/bin/dhcp6/dhcp6_parser.yy @@ -1756,6 +1756,7 @@ debuglevel: DEBUGLEVEL COLON INTEGER { ElementPtr dl(new IntElement($3, ctx.loc2pos(@3))); ctx.stack_.back()->set("debuglevel", dl); }; + severity: SEVERITY { ctx.enter(ctx.NO_KEYWORD); } COLON STRING { -- 2.47.3