From 602e9d36ba09b34f4ec97bd539a2a6f5247c5b5c Mon Sep 17 00:00:00 2001 From: Zhi Yong Wu Date: Sun, 16 Dec 2012 00:21:08 +0800 Subject: [PATCH] ip: add the type 'vxlan' in the output of "ip link help" The new type 'vxlan' is added in the output of "ip link help" Signed-off-by: Zhi Yong Wu --- ip/iplink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ip/iplink.c b/ip/iplink.c index d73c705a..5ff8f858 100644 --- a/ip/iplink.c +++ b/ip/iplink.c @@ -84,7 +84,7 @@ 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 }\n"); + fprintf(stderr, " bridge | ipoib | ip6tnl | ipip | sit | vxlan }\n"); } exit(-1); }