tc: add missing space symbol in ife output
In order to make TDC tests match the output patterns, the missing space
character must be added in the mode output string.
Fixes: 8744c5d338 ("tc: jsonify ife action")
Signed-off-by: Roman Mashak <mrv@mojatatu.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
This commit is contained in:
parent
ac6a4c2299
commit
53d34eb66c
|
|
@ -240,7 +240,7 @@ static int print_ife(struct action_util *au, FILE *f, struct rtattr *arg)
|
|||
p = RTA_DATA(tb[TCA_IFE_PARMS]);
|
||||
|
||||
print_string(PRINT_ANY, "kind", "%s ", "ife");
|
||||
print_string(PRINT_ANY, "mode", "%s",
|
||||
print_string(PRINT_ANY, "mode", "%s ",
|
||||
p->flags & IFE_ENCODE ? "encode" : "decode");
|
||||
print_action_control(f, "action ", p->action, " ");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue