From: Ido Schimmel Date: Wed, 19 Apr 2023 15:43:59 +0000 (+0300) Subject: ip: bridge_slave: Fix help message indentation X-Git-Tag: v6.3.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed328120f47af45f5dd2de2c4035ccaba4c22cf7;p=thirdparty%2Fiproute2.git ip: bridge_slave: Fix help message indentation Use tabs instead of spaces to be consistent with the rest of the options. Before: $ ip link help bridge_slave Usage: ... bridge_slave [ fdb_flush ] [...] [ vlan_tunnel {on | off} ] [ isolated {on | off} ] [ locked {on | off} ] [ mab {on | off} ] [ backup_port DEVICE ] [ nobackup_port ] After: $ ip link help bridge_slave Usage: ... bridge_slave [ fdb_flush ] [...] [ vlan_tunnel {on | off} ] [ isolated {on | off} ] [ locked {on | off} ] [ mab {on | off} ] [ backup_port DEVICE ] [ nobackup_port ] Fixes: 05f1164fe811 ("bridge: link: Add MAC Authentication Bypass (MAB) support") Signed-off-by: Ido Schimmel Reviewed-by: Simon Horman Signed-off-by: Stephen Hemminger --- diff --git a/ip/iplink_bridge_slave.c b/ip/iplink_bridge_slave.c index 43b429485..66a679619 100644 --- a/ip/iplink_bridge_slave.c +++ b/ip/iplink_bridge_slave.c @@ -40,7 +40,7 @@ static void print_explain(FILE *f) " [ vlan_tunnel {on | off} ]\n" " [ isolated {on | off} ]\n" " [ locked {on | off} ]\n" - " [ mab {on | off} ]\n" + " [ mab {on | off} ]\n" " [ backup_port DEVICE ] [ nobackup_port ]\n" ); }