[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240104003127.23877-2-stephen@networkplumber.org>
Date: Wed, 3 Jan 2024 16:31:28 -0800
From: Stephen Hemminger <stephen@...workplumber.org>
To: netdev@...r.kernel.org
Cc: Stephen Hemminger <stephen@...workplumber.org>
Subject: [PATCH iproute2] ip: merge duplicate if clauses
The code that handles brief option had two exactly matching
if (filter == AF_PACKET) clauses; merge them
Signed-off-by: Stephen Hemminger <stephen@...workplumber.org>
---
ip/ipaddress.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/ip/ipaddress.c b/ip/ipaddress.c
index 8197709d172e..e536912fc603 100644
--- a/ip/ipaddress.c
+++ b/ip/ipaddress.c
@@ -929,9 +929,7 @@ static int print_linkinfo_brief(FILE *fp, const char *name,
ifi->ifi_type,
b1, sizeof(b1)));
}
- }
- if (filter.family == AF_PACKET) {
print_link_flags(fp, ifi->ifi_flags, m_flag);
print_string(PRINT_FP, NULL, "%s", "\n");
}
--
2.43.0
Powered by blists - more mailing lists