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: d92cc2d087 ("ipaddress: ll_map: Replace ll_idx_n2a() with ll_index_to_name()")
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David Ahern <dsahern@gmail.com>
This commit is contained in:
Stephen Hemminger 2018-02-20 11:08:46 -08:00 committed by David Ahern
parent 118eda77d6
commit b68b361b4b
1 changed files with 3 additions and 5 deletions

View File

@ -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])