diff options
author | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-08-02 15:34:30 +0200 |
---|---|---|
committer | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-08-02 15:34:30 +0200 |
commit | 614b77fef5712ec10546764b2ca49c50792f95a2 (patch) | |
tree | 8e2477bfc57eb8d96fb39a4790335058a0c07482 /pimd/pim_vty.c | |
parent | pim6d: Removing the to-do item in pimv6 debug (diff) | |
download | frr-614b77fef5712ec10546764b2ca49c50792f95a2.tar.xz frr-614b77fef5712ec10546764b2ca49c50792f95a2.zip |
pim6d: Change the show running commands for pimv6 debugs
Change the show running commands for bsm and vxlan pimv4 and pimv6
debug commands based on the address family.
Including bsm and vxlan in no debug pimv6 debug.
Signed-off-by: Sai Gomathi N <nsaigomathi@vmware.com>
Diffstat (limited to 'pimd/pim_vty.c')
-rw-r--r-- | pimd/pim_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index 43d9c2927..f9642b213 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -129,12 +129,12 @@ int pim_debug_config_write(struct vty *vty) } if (PIM_DEBUG_BSM) { - vty_out(vty, "debug pim bsm\n"); + vty_out(vty, "debug " PIM_AF_DBG " bsm\n"); ++writes; } if (PIM_DEBUG_VXLAN) { - vty_out(vty, "debug pim vxlan\n"); + vty_out(vty, "debug " PIM_AF_DBG " vxlan\n"); ++writes; } |