diff options
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/wireguard/wireguard_cli.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/wireguard/wireguard_cli.c b/src/plugins/wireguard/wireguard_cli.c index 05275f74aad..f821a3c313a 100644 --- a/src/plugins/wireguard/wireguard_cli.c +++ b/src/plugins/wireguard/wireguard_cli.c @@ -192,7 +192,7 @@ wg_peer_add_command_fn (vlib_main_t * vm, ; else if (unformat (line_input, "table-id %d", &table_id)) ; - else if (unformat (line_input, "port %d", &portDst)) + else if (unformat (line_input, "dst-port %d", &portDst)) ; else if (unformat (line_input, "persistent-keepalive %d", &persistent_keepalive)) @@ -246,12 +246,12 @@ done: } /* *INDENT-OFF* */ -VLIB_CLI_COMMAND (wg_peer_add_command, static) = -{ +VLIB_CLI_COMMAND (wg_peer_add_command, static) = { .path = "wireguard peer add", - .short_help = "wireguard peer add <wg_int> public-key <pub_key_other>" - "endpoint <ip4_dst> allowed-ip <prefix>" - "dst-port [port_dst] persistent-keepalive [keepalive_interval]", + .short_help = + "wireguard peer add <wg_int> public-key <pub_key_other> " + "endpoint <ip4_dst> allowed-ip <prefix> " + "dst-port [port_dst] persistent-keepalive [keepalive_interval]", .function = wg_peer_add_command_fn, }; /* *INDENT-ON* */ |