From f02aa3764a48c2afd17761a211f70da941c71d00 Mon Sep 17 00:00:00 2001 From: Gopal Yadav Date: Tue, 22 Sep 2020 13:55:33 +0530 Subject: json: Combining --terse with --json has no effect --terse with --json is ignored, fix this. This patch also includes a test. Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1388 Signed-off-by: Gopal Yadav Signed-off-by: Pablo Neira Ayuso --- src/json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/json.c b/src/json.c index a9f5000f..5856f9fc 100644 --- a/src/json.c +++ b/src/json.c @@ -140,7 +140,7 @@ static json_t *set_print_json(struct output_ctx *octx, const struct set *set) json_object_set_new(root, "gc-interval", tmp); } - if (set->init && set->init->size > 0) { + if (!nft_output_terse(octx) && set->init && set->init->size > 0) { json_t *array = json_array(); const struct expr *i; -- cgit v1.2.3