diff options
author | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-09-25 16:10:48 +0200 |
---|---|---|
committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-09-25 16:10:48 +0200 |
commit | 9ccf14f739123d3fa6aa89f12749c56da86c2992 (patch) | |
tree | b207d5d41f3f4782ba959e93af63ab239edec9de /ospf6d | |
parent | zebra: CHECK ME fixes (diff) | |
download | frr-9ccf14f739123d3fa6aa89f12749c56da86c2992.tar.xz frr-9ccf14f739123d3fa6aa89f12749c56da86c2992.zip |
Expand #defines in command strings
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6_asbr.c | 8 | ||||
-rw-r--r-- | ospf6d/ospf6_bfd.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ospf6d/ospf6_asbr.c b/ospf6d/ospf6_asbr.c index c35b30a65..379320e86 100644 --- a/ospf6d/ospf6_asbr.c +++ b/ospf6d/ospf6_asbr.c @@ -642,7 +642,7 @@ ospf6_asbr_redistribute_remove (int type, ifindex_t ifindex, DEFUN (ospf6_redistribute, ospf6_redistribute_cmd, - "redistribute " QUAGGA_REDIST_STR_OSPF6D, + "redistribute <kernel|connected|static|ripng|isis|bgp|table>", "Redistribute\n" QUAGGA_REDIST_HELP_STR_OSPF6D ) @@ -660,7 +660,7 @@ DEFUN (ospf6_redistribute, DEFUN (ospf6_redistribute_routemap, ospf6_redistribute_routemap_cmd, - "redistribute " QUAGGA_REDIST_STR_OSPF6D " route-map WORD", + "redistribute <kernel|connected|static|ripng|isis|bgp|table> route-map WORD", "Redistribute\n" QUAGGA_REDIST_HELP_STR_OSPF6D "Route map reference\n" @@ -683,7 +683,7 @@ DEFUN (ospf6_redistribute_routemap, /* * CHECK ME - The following ALIASes need to be implemented in this DEFUN - * "no redistribute " QUAGGA_REDIST_STR_OSPF6D " route-map WORD", + * "no redistribute <kernel|connected|static|ripng|isis|bgp|table> route-map WORD", * NO_STR * "Redistribute\n" * QUAGGA_REDIST_HELP_STR_OSPF6D @@ -693,7 +693,7 @@ DEFUN (ospf6_redistribute_routemap, */ DEFUN (no_ospf6_redistribute, no_ospf6_redistribute_cmd, - "no redistribute " QUAGGA_REDIST_STR_OSPF6D, + "no redistribute <kernel|connected|static|ripng|isis|bgp|table>", NO_STR "Redistribute\n" QUAGGA_REDIST_HELP_STR_OSPF6D diff --git a/ospf6d/ospf6_bfd.c b/ospf6d/ospf6_bfd.c index 5d1eae3e3..ffbefd139 100644 --- a/ospf6d/ospf6_bfd.c +++ b/ospf6d/ospf6_bfd.c @@ -346,7 +346,7 @@ DEFUN (ipv6_ospf6_bfd, DEFUN (ipv6_ospf6_bfd_param, ipv6_ospf6_bfd_param_cmd, - "ipv6 ospf6 bfd " BFD_CMD_DETECT_MULT_RANGE BFD_CMD_MIN_RX_RANGE BFD_CMD_MIN_TX_RANGE, + "ipv6 ospf6 bfd (2-255) (50-60000) (50-60000)", IP6_STR OSPF6_STR "Enables BFD support\n" |