From: Nicolas Dichtel Date: Tue, 8 Oct 2013 14:59:45 +0000 (-0700) Subject: iplink: update available type list X-Git-Tag: v3.12.0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1253a10a63e417c5a7774c127aea1a3b0dd09e88;p=thirdparty%2Fiproute2.git iplink: update available type list macvtap and vti were missing. Signed-off-by: Nicolas Dichtel --- diff --git a/ip/iplink.c b/ip/iplink.c index 16cb6fed9..6cde731ac 100644 --- a/ip/iplink.c +++ b/ip/iplink.c @@ -84,9 +84,9 @@ void iplink_usage(void) if (iplink_have_newlink()) { fprintf(stderr, "\n"); - fprintf(stderr, "TYPE := { vlan | veth | vcan | dummy | ifb | macvlan | can |\n"); - fprintf(stderr, " bridge | ipoib | ip6tnl | ipip | sit | vxlan |\n"); - fprintf(stderr, " gre | gretap | ip6gre | ip6gretap }\n"); + fprintf(stderr, "TYPE := { vlan | veth | vcan | dummy | ifb | macvlan | macvtap |\n"); + fprintf(stderr, " can | bridge | ipoib | ip6tnl | ipip | sit | vxlan |\n"); + fprintf(stderr, " gre | gretap | ip6gre | ip6gretap | vti }\n"); } exit(-1); }