From 2e320d8b7e74d667628ede35d2ec0340347cd2af Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Je=C5=99=C3=A1bek?= Date: Wed, 5 Dec 2018 16:39:20 +0100 Subject: [PATCH] ip: iplink_can.c: fix json formatting MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Previously the CAN state was always printed in human-readable txt format, resulting in invalid JSON. Signed-off-by: Martin Jeřábek Signed-off-by: Stephen Hemminger --- ip/iplink_can.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ip/iplink_can.c b/ip/iplink_can.c index c0deeb1f1..5bf490a9d 100644 --- a/ip/iplink_can.c +++ b/ip/iplink_can.c @@ -283,7 +283,7 @@ static void can_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[]) if (tb[IFLA_CAN_STATE]) { uint32_t state = rta_getattr_u32(tb[IFLA_CAN_STATE]); - fprintf(f, "state %s ", state < CAN_STATE_MAX ? + print_string(PRINT_ANY, "state", "state %s ", state < CAN_STATE_MAX ? can_state_names[state] : "UNKNOWN"); } -- 2.47.2