pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-cbc/+/28296 )
Change subject: vty. Fix several typos and missing param descriptions ......................................................................
vty. Fix several typos and missing param descriptions
Change-Id: I798ba4663247018a61d6f392961af11871c6152b --- M src/cbc_vty.c 1 file changed, 6 insertions(+), 4 deletions(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, approved
diff --git a/src/cbc_vty.c b/src/cbc_vty.c index b45fbd4..5d154c6 100644 --- a/src/cbc_vty.c +++ b/src/cbc_vty.c @@ -395,8 +395,8 @@
DEFUN(cfg_ecbe_local_port, cfg_ecbe_local_port_cmd, "local-port <0-65535>", - "Local TCP port for ECBE RESET Interface\n" - "Local TCP port for ECBE RESET Interface\n") + "Local TCP port for ECBE REST Interface\n" + "Local TCP port for ECBE REST Interface\n") { g_cbc->config.ecbe.local_port = atoi(argv[0]); return CMD_SUCCESS; @@ -407,7 +407,8 @@
DEFUN(cfg_cbc_peer, cfg_cbc_peer_cmd, "peer NAME", - "Remote Peer\n") + "Remote Peer\n" + "Name identifying the peer\n") { struct cbc_peer *peer;
@@ -424,7 +425,8 @@
DEFUN(cfg_cbc_no_peer, cfg_cbc_no_peer_cmd, "no peer NAME", - NO_STR "Remote Peer\n") + NO_STR "Remote Peer\n" + "Name identifying the peer\n") { struct cbc_peer *peer;