ip: fix "ip -oneline a"

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
pull/2/merge
Denys Vlasenko 2018-03-08 15:55:07 +01:00
parent 7798282db2
commit db169f2538
1 changed files with 4 additions and 1 deletions

View File

@ -570,7 +570,10 @@ int FAST_FUNC ipaddr_list_or_flush(char **argv, int flush)
}
for (l = linfo; l; l = l->next) {
if (no_link || print_linkinfo(&l->h) == 0) {
if (no_link
|| (oneline || print_linkinfo(&l->h) == 0)
/* ^^^^^^^^^ "ip -oneline a" does not print link info */
) {
struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
if (G_filter.family != AF_PACKET)
print_selected_addrinfo(ifi->ifi_index, ainfo);