|
|
4aca6e |
From d9e8a0597c658e7b33856b3f4621b253de72d923 Mon Sep 17 00:00:00 2001
|
|
|
4aca6e |
From: Phil Sutter <psutter@redhat.com>
|
|
|
4aca6e |
Date: Tue, 28 Feb 2017 16:11:52 +0100
|
|
|
4aca6e |
Subject: [PATCH] bridge: fdb: minor syntax fix in help text
|
|
|
4aca6e |
|
|
|
4aca6e |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1417289
|
|
|
4aca6e |
Upstream Status: iproute2.git commit bd5bbad450079
|
|
|
4aca6e |
|
|
|
4aca6e |
commit bd5bbad45007937758ec1339f2612049ce7187d7
|
|
|
4aca6e |
Author: Phil Sutter <phil@nwl.cc>
|
|
|
4aca6e |
Date: Thu Oct 29 10:55:24 2015 +0100
|
|
|
4aca6e |
|
|
|
4aca6e |
bridge: fdb: minor syntax fix in help text
|
|
|
4aca6e |
---
|
|
|
4aca6e |
bridge/fdb.c | 6 +++---
|
|
|
4aca6e |
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
4aca6e |
|
|
|
4aca6e |
diff --git a/bridge/fdb.c b/bridge/fdb.c
|
|
|
4aca6e |
index 8a706d8..8767c96 100644
|
|
|
4aca6e |
--- a/bridge/fdb.c
|
|
|
4aca6e |
+++ b/bridge/fdb.c
|
|
|
4aca6e |
@@ -30,11 +30,11 @@ static unsigned int filter_index;
|
|
|
4aca6e |
|
|
|
4aca6e |
static void usage(void)
|
|
|
4aca6e |
{
|
|
|
4aca6e |
- fprintf(stderr, "Usage: bridge fdb { add | append | del | replace ADDR dev DEV\n"
|
|
|
4aca6e |
+ fprintf(stderr, "Usage: bridge fdb { add | append | del | replace } ADDR dev DEV\n"
|
|
|
4aca6e |
" [ self ] [ master ] [ use ] [ router ]\n"
|
|
|
4aca6e |
" [ local | temp ] [ dst IPADDR ] [ vlan VID ]\n"
|
|
|
4aca6e |
- " [ port PORT] [ vni VNI ] [via DEV]\n");
|
|
|
4aca6e |
- fprintf(stderr, " bridge fdb {show} [ br BRDEV ] [ brport DEV ]\n");
|
|
|
4aca6e |
+ " [ port PORT] [ vni VNI ] [ via DEV ]\n");
|
|
|
4aca6e |
+ fprintf(stderr, " bridge fdb [ show [ br BRDEV ] [ brport DEV ] ]\n");
|
|
|
4aca6e |
exit(-1);
|
|
|
4aca6e |
}
|
|
|
4aca6e |
|
|
|
4aca6e |
--
|
|
|
4aca6e |
1.8.3.1
|
|
|
4aca6e |
|