summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dichtel <nicolas.dichtel@6wind.com>2013-10-08 07:59:45 -0700
committerStephen Hemminger <stephen@networkplumber.org>2013-10-09 15:29:09 -0700
commit1253a10a63e417c5a7774c127aea1a3b0dd09e88 (patch)
treeb02656dc80d2067a753bdd6f6a41bceafd6b8d60
parentb557416532f3db745cb9cceaaf343b4bc5b57003 (diff)
downloadiproute2-1253a10a63e417c5a7774c127aea1a3b0dd09e88.tar.gz
iplink: update available type list
macvtap and vti were missing. Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
-rw-r--r--ip/iplink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ip/iplink.c b/ip/iplink.c
index 16cb6fed..6cde731a 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);
}