summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2018-08-24 09:52:11 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-08-24 09:52:11 +0200
commit6a103a37167d26843575b6ef5cbb4425249de136 (patch)
tree726b681f0efeb7ef973e649b249101fb545475e0 /src
parentaf00174af3ef478d7d8d96d15647ad1bbb0bc919 (diff)
statement: incorrect spacing in set reference
chain y { type filter hook output priority filter; policy accept; update @xyz{ ip daddr } ^^ Missing space between set reference and the element statement. This does not break restoring the ruleset but it is inconsistent to the viewer. There is also an extra space after the element statement that is enclosed in brackets. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r--src/statement.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/statement.c b/src/statement.c
index 3040476f..cec83c19 100644
--- a/src/statement.c
+++ b/src/statement.c
@@ -630,7 +630,7 @@ static void set_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
expr_print(stmt->set.set, octx);
nft_print(octx, " { ");
expr_print(stmt->set.key, octx);
- nft_print(octx, " } ");
+ nft_print(octx, " }");
}
static void set_stmt_destroy(struct stmt *stmt)
@@ -656,11 +656,11 @@ static void map_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
{
nft_print(octx, "%s ", set_stmt_op_names[stmt->map.op]);
expr_print(stmt->map.set, octx);
- nft_print(octx, "{ ");
+ nft_print(octx, " { ");
expr_print(stmt->map.map->map->key, octx);
nft_print(octx, " : ");
expr_print(stmt->map.map->mappings, octx);
- nft_print(octx, " } ");
+ nft_print(octx, " }");
}
static void map_stmt_destroy(struct stmt *stmt)