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