summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-04-13 11:40:50 +0200
committerFlorian Westphal <fw@strlen.de>2018-04-17 23:23:01 +0200
commitce2cc622cb110952323cd310046505653e406193 (patch)
tree963dab89290f93bdaf4b0cb865c435344edd1f92
parent2b8f691bd43db5ee120d3d73b1bac6643773b7dc (diff)
scanner: add helpers token
without it, you get: nft list ct helpers table filter Error: syntax error, unexpected string, expecting helper or helpers Fixes: 14fd3ad720f6e ("src: prepare for future ct timeout policy support") Signed-off-by: Florian Westphal <fw@strlen.de>
-rw-r--r--src/scanner.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scanner.l b/src/scanner.l
index ba60ec17..f3544ce5 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -507,6 +507,7 @@ addrstring ({macaddr}|{ip4addr}|{ip6addr})
"event" { return EVENT; }
"expiration" { return EXPIRATION; }
"helper" { return HELPER; }
+"helpers" { return HELPERS; }
"label" { return LABEL; }
"state" { return STATE; }
"status" { return STATUS; }