naccyde / rpms / iproute

Forked from rpms/iproute 5 months ago
Clone

Blame SOURCES/0051-iplink-update-available-type-list.patch

049c96
From 36af5dff831900abaa38c6c906a2c9ac8ca4d201 Mon Sep 17 00:00:00 2001
049c96
From: Phil Sutter <psutter@redhat.com>
049c96
Date: Tue, 23 Feb 2016 18:24:50 +0100
049c96
Subject: [PATCH] iplink: update available type list
049c96
049c96
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1269528
049c96
Upstream Status: iproute2.git commit 1253a10a63e41
049c96
049c96
commit 1253a10a63e417c5a7774c127aea1a3b0dd09e88
049c96
Author: Nicolas Dichtel <nicolas.dichtel@6wind.com>
049c96
Date:   Tue Oct 8 07:59:45 2013 -0700
049c96
049c96
    iplink: update available type list
049c96
049c96
    macvtap and vti were missing.
049c96
049c96
    Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
049c96
---
049c96
 ip/iplink.c | 6 +++---
049c96
 1 file changed, 3 insertions(+), 3 deletions(-)
049c96
049c96
diff --git a/ip/iplink.c b/ip/iplink.c
049c96
index 048d4f3..5a9ed57 100644
049c96
--- a/ip/iplink.c
049c96
+++ b/ip/iplink.c
049c96
@@ -89,9 +89,9 @@ void iplink_usage(void)
049c96
 	if (iplink_have_newlink()) {
049c96
 		fprintf(stderr, "       ip link help [ TYPE ]\n");
049c96
 		fprintf(stderr, "\n");
049c96
-		fprintf(stderr, "TYPE := { vlan | veth | vcan | dummy | ifb | macvlan | can |\n");
049c96
-		fprintf(stderr, "          bridge | ipoib | ip6tnl | ipip | sit | vxlan |\n");
049c96
-		fprintf(stderr, "          gre | gretap | ip6gre | ip6gretap }\n");
049c96
+		fprintf(stderr, "TYPE := { vlan | veth | vcan | dummy | ifb | macvlan | macvtap |\n");
049c96
+		fprintf(stderr, "          can | bridge | ipoib | ip6tnl | ipip | sit | vxlan |\n");
049c96
+		fprintf(stderr, "          gre | gretap | ip6gre | ip6gretap | vti }\n");
049c96
 	}
049c96
 	exit(-1);
049c96
 }
049c96
-- 
049c96
1.8.3.1
049c96