diff options
author | Damjan Marion <damarion@cisco.com> | 2024-03-12 17:42:49 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-03-12 19:29:56 +0000 |
commit | c3148b1be8f519c80c4417c21b978dfef72b351b (patch) | |
tree | 2511eb86e5c429ab018716fed0366164e6faf679 /src/plugins/lacp/cli.c | |
parent | e2ed59933153d665ee43add2de03a581627b73fa (diff) |
misc: remove GNU Indent directives
Type: refactor
Change-Id: I5235bf3e9aff58af6ba2c14e8c6529c4fc9ec86c
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/lacp/cli.c')
-rw-r--r-- | src/plugins/lacp/cli.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/lacp/cli.c b/src/plugins/lacp/cli.c index fee9a5a2269..7cf97e09dc4 100644 --- a/src/plugins/lacp/cli.c +++ b/src/plugins/lacp/cli.c @@ -28,7 +28,6 @@ lacp_dump_ifs (lacp_interface_details_t ** out_lacpifs) lacp_interface_details_t *r_lacpifs = NULL; lacp_interface_details_t *lacpif = NULL; - /* *INDENT-OFF* */ pool_foreach (mif, bm->neighbors) { if (mif->lacp_enabled == 0) continue; @@ -61,7 +60,6 @@ lacp_dump_ifs (lacp_interface_details_t ** out_lacpifs) lacpif->ptx_state = mif->ptx_state; lacpif->mux_state = mif->mux_state; } - /* *INDENT-ON* */ *out_lacpifs = r_lacpifs; @@ -309,14 +307,12 @@ done: return error; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_lacp_command, static) = { .path = "show lacp", .short_help = "show lacp [<interface>] [details]", .function = show_lacp_fn, .is_mp_safe = 1, }; -/* *INDENT-ON* */ static clib_error_t * debug_lacp_command_fn (vlib_main_t * vm, unformat_input_t * input, @@ -384,13 +380,11 @@ done: return error; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (debug_lacp_command, static) = { .path = "debug lacp", .short_help = "debug lacp <interface> <on | off>", .function = debug_lacp_command_fn, }; -/* *INDENT-ON* */ clib_error_t * lacp_cli_init (vlib_main_t * vm) |