diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-20 10:37:57 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-20 10:37:57 +0200 |
commit | e36d39a97ef2fc94169e1b772ef7eccc9e69fb00 (patch) | |
tree | 5e497072e1033e15ec86091869901816cbeb3154 | |
parent | Merge pull request #4579 from opensourcerouting/mtype-fix (diff) | |
download | frr-e36d39a97ef2fc94169e1b772ef7eccc9e69fb00.tar.xz frr-e36d39a97ef2fc94169e1b772ef7eccc9e69fb00.zip |
pimd: Remove output of `debug igmp trace detail` from show commands
There has never been a `debug igmp trace detail` but we have
had code to display this when we had the appropriate flags
set. Since we never can accept this, let's remove this.
This showed up because of commit:0ab16492d2d9fcc6cba7e001227deed6765ed261
where we re-arranged some debugs to combine them being turned on.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r-- | pimd/pim_vty.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index 468cd56ee..d1935195d 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -70,10 +70,6 @@ int pim_debug_config_write(struct vty *vty) vty_out(vty, "debug igmp trace\n"); ++writes; } - if (PIM_DEBUG_IGMP_TRACE_DETAIL) { - vty_out(vty, "debug igmp trace detail\n"); - ++writes; - } if (PIM_DEBUG_MROUTE) { vty_out(vty, "debug mroute\n"); |