]> git.ipfire.org Git - thirdparty/iproute2.git/commit
ip: bridge_slave: Fix help message indentation
authorIdo Schimmel <idosch@nvidia.com>
Wed, 19 Apr 2023 15:43:59 +0000 (18:43 +0300)
committerStephen Hemminger <stephen@networkplumber.org>
Sat, 22 Apr 2023 03:12:05 +0000 (20:12 -0700)
commited328120f47af45f5dd2de2c4035ccaba4c22cf7
tree58c5278c79694291dd3e60107022119dd8860576
parent76e03796b6e1f2c67c70776c622afb9c7803a02c
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 <idosch@nvidia.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
ip/iplink_bridge_slave.c