From: Jiri Pirko Date: Sat, 25 Nov 2017 10:07:57 +0000 (+0100) Subject: tc: remove action cookie len from printout X-Git-Tag: v4.15.0~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81051c60c24ad083cfcb46271e6450675763c722;p=thirdparty%2Fiproute2.git tc: remove action cookie len from printout Make the output same as input and avoid printout of unnecessary len. Suggested-by: Stephen Hemminger Fixes: fd8b3d2c1b9b ("actions: Add support for user cookies") Signed-off-by: Jiri Pirko --- diff --git a/tc/m_action.c b/tc/m_action.c index aa3aa52ea..e6d914982 100644 --- a/tc/m_action.c +++ b/tc/m_action.c @@ -309,7 +309,7 @@ static int tc_print_one_action(FILE *f, struct rtattr *arg) int strsz = RTA_PAYLOAD(tb[TCA_ACT_COOKIE]); char b1[strsz * 2 + 1]; - fprintf(f, "\tcookie len %d %s\n", strsz, + fprintf(f, "\tcookie %s\n", hexstring_n2a(RTA_DATA(tb[TCA_ACT_COOKIE]), strsz, b1, sizeof(b1))); }