summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rule.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/rule.c b/src/rule.c
index 6af7d9a9..99b12e97 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -888,9 +888,12 @@ static void table_print(const struct table *table, struct output_ctx *octx)
chain_print(chain, octx);
delim = "\n";
}
+ nft_print(octx, "}");
+
if (octx->handle > 0)
nft_print(octx, " # handle %" PRIu64, table->handle.handle.id);
- nft_print(octx, "}\n");
+
+ nft_print(octx, "\n");
}
struct cmd *cmd_alloc(enum cmd_ops op, enum cmd_obj obj,
@@ -1502,10 +1505,12 @@ static void obj_print_declaration(const struct obj *obj,
obj_print_data(obj, opts, octx);
- nft_print(octx, "%s%s}%s", opts->nl, opts->tab, opts->nl);
+ nft_print(octx, "%s%s}", opts->nl, opts->tab);
if (octx->handle > 0)
- nft_print(octx, "# handle %" PRIu64, obj->handle.handle.id);
+ nft_print(octx, " # handle %" PRIu64, obj->handle.handle.id);
+
+ nft_print(octx, "%s", opts->nl);
}
void obj_print(const struct obj *obj, struct output_ctx *octx)