summaryrefslogtreecommitdiffstats
path: root/tests/shell
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2019-09-19 11:23:46 +0200
committerFlorian Westphal <fw@strlen.de>2019-09-20 12:02:42 +0200
commita34d8e2b480764e7ad847ccbe67e7ae418bcb56d (patch)
tree3aaed749cb4fd455c8d715726328f67c219bcb3c /tests/shell
parent8f85f5c874dafbc88979199c0181b2642d9fd23a (diff)
src: meter: avoid double-space in list ruleset output
changes meter f size 1024 { ip saddr limit rate 10/second} accept to meter f size 1024 { ip saddr limit rate 10/second } accept Signed-off-by: Florian Westphal <fw@strlen.de> Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/shell')
-rw-r--r--tests/shell/testcases/sets/dumps/0022type_selective_flush_0.nft2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/shell/testcases/sets/dumps/0022type_selective_flush_0.nft b/tests/shell/testcases/sets/dumps/0022type_selective_flush_0.nft
index e518906c..5a6e3261 100644
--- a/tests/shell/testcases/sets/dumps/0022type_selective_flush_0.nft
+++ b/tests/shell/testcases/sets/dumps/0022type_selective_flush_0.nft
@@ -8,6 +8,6 @@ table ip t {
}
chain c {
- tcp dport 80 meter f size 1024 { ip saddr limit rate 10/second}
+ tcp dport 80 meter f size 1024 { ip saddr limit rate 10/second }
}
}