From: Pablo Neira Ayuso Date: Fri, 24 Aug 2018 07:52:11 +0000 (+0200) Subject: statement: incorrect spacing in set reference X-Git-Tag: v0.9.1~310 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a103a37167d26843575b6ef5cbb4425249de136;p=thirdparty%2Fnftables.git 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 --- 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)