From: Zhang Shengju Date: Wed, 12 Aug 2015 06:03:22 +0000 (+0000) Subject: iplink: add missing link type X-Git-Tag: v4.2.0~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8cf93de04d9372f478fc2e59e2fe8bce1953b7a;p=thirdparty%2Fiproute2.git iplink: add missing link type Add missing link type "bridge_slave". Signed-off-by: Zhang Shengju --- diff --git a/ip/iplink.c b/ip/iplink.c index e296e6f61..a6378e2ba 100644 --- a/ip/iplink.c +++ b/ip/iplink.c @@ -93,7 +93,7 @@ void iplink_usage(void) fprintf(stderr, "TYPE := { vlan | veth | vcan | dummy | ifb | macvlan | macvtap |\n"); fprintf(stderr, " bridge | bond | ipoib | ip6tnl | ipip | sit | vxlan |\n"); fprintf(stderr, " gre | gretap | ip6gre | ip6gretap | vti | nlmon |\n"); - fprintf(stderr, " bond_slave | ipvlan | geneve }\n"); + fprintf(stderr, " bond_slave | ipvlan | geneve | bridge_slave }\n"); } exit(-1); }