[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1442863981-19112-1-git-send-email-phil@nwl.cc>
Date: Mon, 21 Sep 2015 21:33:01 +0200
From: Phil Sutter <phil@....cc>
To: Stephen Hemminger <stephen@...workplumber.org>
Cc: netdev@...r.kernel.org, Wilhelm Wijkander <lists@...e.se>,
Vadim Kochan <vadim4j@...il.com>
Subject: [iproute2 PATCH] ip-link: do not support 'ip link add dev help'
Commit 0532555 ('Support "ip link add help" for rtnl_link API') added a
check for specified help parameter. Though due to the place where it has
been added to, it is not possible anymore to force a given parameter to
be interpreted as interface name by prefixing it with 'dev '. Fix this
by forcing whatever follows 'dev' to be presumed as interface name.
Signed-off-by: Phil Sutter <phil@....cc>
---
ip/iplink.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ip/iplink.c b/ip/iplink.c
index 97f46cd..1c45205 100644
--- a/ip/iplink.c
+++ b/ip/iplink.c
@@ -647,11 +647,11 @@ int iplink_parse(int argc, char **argv, struct iplink_req *req,
addattr8(&req->n, sizeof(*req), IFLA_PROTO_DOWN,
proto_down);
} else {
- if (strcmp(*argv, "dev") == 0)
- NEXT_ARG();
-
if (matches(*argv, "help") == 0)
usage();
+
+ if (strcmp(*argv, "dev") == 0)
+ NEXT_ARG();
if (*dev)
duparg2("dev", *argv);
*dev = *argv;
--
2.1.2
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists