On Mon, 27 Jul 2020 18:20:09 +0200
Julien Fortin <[email protected]> wrote:

> diff --git a/bridge/fdb.c b/bridge/fdb.c
> index d1f8afbe..765f4e51 100644
> --- a/bridge/fdb.c
> +++ b/bridge/fdb.c
> @@ -62,7 +62,10 @@ static const char *state_n2a(unsigned int s)
>       if (s & NUD_REACHABLE)
>               return "";
>  
> -     sprintf(buf, "state=%#x", s);
> +     if (is_json_context())
> +             sprintf(buf, "%#x", s);
> +     else
> +             sprintf(buf, "state %#x", s)

Please keep the "state=%#x" for the non JSON case.
No need to change output format.

Reply via email to