From 6d79096aea854409a86a1854dcd3c52d5ed533f6 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Fri, 1 Jun 2018 17:32:10 +0200 Subject: JSON: Fix replace command parser This was completely broken. Yet another indicator the JSON API part of testsuite is insufficient. Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- src/parser_json.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/parser_json.c') diff --git a/src/parser_json.c b/src/parser_json.c index 79715536..9b7aef4b 100644 --- a/src/parser_json.c +++ b/src/parser_json.c @@ -2711,8 +2711,9 @@ static struct cmd *json_parse_cmd_replace(struct json_ctx *ctx, struct rule *rule; size_t index; - if (json_unpack_err(ctx, root, "{s:o}", "rule", &rule)) + if (json_unpack_err(ctx, root, "{s:o}", "rule", &tmp)) return NULL; + root = tmp; if (json_unpack_err(ctx, root, "{s:s, s:s, s:s, s:o}", "family", &family, -- cgit v1.2.3