diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-04-29 00:34:07 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-04-29 00:34:07 +0200 |
commit | 13f42045616320119bb47cf8df302cfcc76ade9a (patch) | |
tree | 461aab079233427f4a678d26683624a508b86e9f | |
parent | 405095d84b1f3be17efb4e10d87d480bd054877f (diff) | |
download | busybox-w32-13f42045616320119bb47cf8df302cfcc76ade9a.tar.gz busybox-w32-13f42045616320119bb47cf8df302cfcc76ade9a.tar.bz2 busybox-w32-13f42045616320119bb47cf8df302cfcc76ade9a.zip |
ip: fix comment placement
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/libiproute/ipaddress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index 8364f6a3e..fc6a4fb77 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c | |||
@@ -571,8 +571,8 @@ int FAST_FUNC ipaddr_list_or_flush(char **argv, int flush) | |||
571 | 571 | ||
572 | for (l = linfo; l; l = l->next) { | 572 | for (l = linfo; l; l = l->next) { |
573 | if ((oneline && G_filter.family != AF_PACKET) | 573 | if ((oneline && G_filter.family != AF_PACKET) |
574 | || (print_linkinfo(&l->h) == 0) | ||
575 | /* ^^^^^^^^^ "ip -oneline a" does not print link info */ | 574 | /* ^^^^^^^^^ "ip -oneline a" does not print link info */ |
575 | || (print_linkinfo(&l->h) == 0) | ||
576 | ) { | 576 | ) { |
577 | struct ifinfomsg *ifi = NLMSG_DATA(&l->h); | 577 | struct ifinfomsg *ifi = NLMSG_DATA(&l->h); |
578 | if (G_filter.family != AF_PACKET) | 578 | if (G_filter.family != AF_PACKET) |