diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-10-04 15:18:29 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-10-06 15:39:56 +0200 | 
| commit | a0dfca37b5e1b9480f209d185476ce03b48ce3b8 (patch) | |
| tree | e224fdfdd7e8549802cf77de30409aca34495afc /zebra/zebra_fpm.c | |
| parent | 3df576449993ad88b70b6668931d875557cf5139 (diff) | |
*: fix some malformed CLI docstrings
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_fpm.c')
| -rw-r--r-- | zebra/zebra_fpm.c | 28 | 
1 files changed, 17 insertions, 11 deletions
diff --git a/zebra/zebra_fpm.c b/zebra/zebra_fpm.c index 1b2753377b..c74c692ee1 100644 --- a/zebra/zebra_fpm.c +++ b/zebra/zebra_fpm.c @@ -1841,12 +1841,15 @@ DEFUN (clear_zebra_fpm_stats,  /*   * update fpm connection information   */ -DEFUN ( fpm_remote_ip, +DEFUN (fpm_remote_ip,         fpm_remote_ip_cmd, -        "fpm connection ip A.B.C.D port (1-65535)", -        "fpm connection remote ip and port\n" -        "Remote fpm server ip A.B.C.D\n" -        "Enter ip ") +       "fpm connection ip A.B.C.D port (1-65535)", +       "Forwarding Path Manager\n" +       "Configure FPM connection\n" +       "Connect to IPv4 address\n" +       "Connect to IPv4 address\n" +       "TCP port number\n" +       "TCP port number\n")  {  	in_addr_t fpm_server; @@ -1867,13 +1870,16 @@ DEFUN ( fpm_remote_ip,  	return CMD_SUCCESS;  } -DEFUN ( no_fpm_remote_ip, +DEFUN (no_fpm_remote_ip,         no_fpm_remote_ip_cmd, -        "no fpm connection ip A.B.C.D port (1-65535)", -        "fpm connection remote ip and port\n" -        "Connection\n" -        "Remote fpm server ip A.B.C.D\n" -        "Enter ip ") +       "no fpm connection ip A.B.C.D port (1-65535)", +       NO_STR +       "Forwarding Path Manager\n" +       "Remove configured FPM connection\n" +       "Connect to IPv4 address\n" +       "Connect to IPv4 address\n" +       "TCP port number\n" +       "TCP port number\n")  {  	if (zfpm_g->fpm_server != inet_addr(argv[4]->arg)  	    || zfpm_g->fpm_port != atoi(argv[6]->arg))  | 
