diff options
author | Sarita Patra <saritap@vmware.com> | 2022-09-07 08:48:09 +0200 |
---|---|---|
committer | Sarita Patra <saritap@vmware.com> | 2022-09-14 05:36:07 +0200 |
commit | ad56b07c0915aabded3ba68c63658680984ab7bd (patch) | |
tree | bf87cbd28dcddfe3daf58a8683f6ac210c71f62f /pimd/pim6_mld.c | |
parent | Merge pull request #11911 from mruprich/ospf-api (diff) | |
download | frr-ad56b07c0915aabded3ba68c63658680984ab7bd.tar.xz frr-ad56b07c0915aabded3ba68c63658680984ab7bd.zip |
pim6d: fix "show ipv6 mld interface" command
Issue:
=====
frr# show ipv6 mld
interface All VRFs
Fix:
===
frr# show ipv6 mld
interface MLD interface information
Signed-off-by: Sarita Patra <saritap@vmware.com>
Diffstat (limited to 'pimd/pim6_mld.c')
-rw-r--r-- | pimd/pim6_mld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim6_mld.c b/pimd/pim6_mld.c index ecc771d85..9e27ba783 100644 --- a/pimd/pim6_mld.c +++ b/pimd/pim6_mld.c @@ -2495,13 +2495,13 @@ static void gm_show_if(struct vty *vty, struct vrf *vrf, const char *ifname, DEFPY(gm_show_interface, gm_show_interface_cmd, - "show ipv6 mld [vrf <VRF|all>$vrf_str] interface [IFNAME] [detail$detail|json$json]", - DEBUG_STR + "show ipv6 mld [vrf <VRF|all>$vrf_str] interface [IFNAME | detail$detail] [json$json]", SHOW_STR IPV6_STR MLD_STR VRF_FULL_CMD_HELP_STR "MLD interface information\n" + "Interface name\n" "Detailed output\n" JSON_STR) { |