From: Phil Sutter Date: Wed, 20 Sep 2023 17:37:21 +0000 (+0200) Subject: parser_json: Fix limit object burst value parsing X-Git-Tag: v1.0.9~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29aeff471496b6b1ae9a08dada21a5a9278467cf;p=thirdparty%2Fnftables.git parser_json: Fix limit object burst value parsing The field is of type uint32_t, use lower case 'i' format specifier. Fixes: c36288dbe2ba3 ("JSON: Fix parsing and printing of limit objects") Signed-off-by: Phil Sutter --- diff --git a/src/parser_json.c b/src/parser_json.c index 57c2c2a9b..ddd9c496b 100644 --- a/src/parser_json.c +++ b/src/parser_json.c @@ -3616,7 +3616,7 @@ static struct cmd *json_parse_cmd_add_object(struct json_ctx *ctx, } json_unpack(root, "{s:s}", "rate_unit", &rate_unit); json_unpack(root, "{s:b}", "inv", &inv); - json_unpack(root, "{s:I}", "burst", &obj->limit.burst); + json_unpack(root, "{s:i}", "burst", &obj->limit.burst); json_unpack(root, "{s:s}", "burst_unit", &burst_unit); if (!strcmp(rate_unit, "packets")) {