From b68b361b4bf1ec18655a3bed112623c81e475aa6 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Tue, 20 Feb 2018 11:08:46 -0800 Subject: [PATCH] ip: don't colorize the master device Putting whole string "master eth0" in the interface name color is wrong and confusing. Let's just turn color off for all attributes of device. Fixes: d92cc2d087b0 ("ipaddress: ll_map: Replace ll_idx_n2a() with ll_index_to_name()") Signed-off-by: Stephen Hemminger Signed-off-by: David Ahern --- ip/ipaddress.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ip/ipaddress.c b/ip/ipaddress.c index 13804539..768e2ed2 100644 --- a/ip/ipaddress.c +++ b/ip/ipaddress.c @@ -888,11 +888,9 @@ int print_linkinfo(const struct sockaddr_nl *who, if (tb[IFLA_MASTER]) { int master = rta_getattr_u32(tb[IFLA_MASTER]); - print_color_string(PRINT_ANY, - COLOR_IFNAME, - "master", - "master %s ", - ll_index_to_name(master)); + print_string(PRINT_ANY, + "master", "master %s ", + ll_index_to_name(master)); } if (tb[IFLA_OPERSTATE]) -- 2.39.5