summaryrefslogtreecommitdiff
path: root/pimd/pim_vty.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2016-11-30 14:35:09 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-12-21 20:26:17 -0500
commita23ee35b2b5baf2453a0f5a0f2a3f53b6469fc26 (patch)
tree25fc62cad227b6ece296153590ea49ad1adfdee5 /pimd/pim_vty.c
parentcf3cd99f5db25a54d568c8766548b8e15fb11b6f (diff)
pimd: Fix show run output to be correct.
When issuing a vtysh -m command it expects the output it receives to be the complete command not a partial match. The 'debug pim packets joins' command was being outputted as 'debug pim packets join' This was making quagga-reload.py unhappy. Adding the joins word allows it to complete successfully Ticket: CM-13805 Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com> Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_vty.c')
-rw-r--r--pimd/pim_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c
index b8a361a260..3a7d056cb5 100644
--- a/pimd/pim_vty.c
+++ b/pimd/pim_vty.c
@@ -126,7 +126,7 @@ pim_debug_config_write (struct vty *vty)
}
if (PIM_DEBUG_PIM_J_P) {
- vty_out (vty, "debug pim packets join%s", VTY_NEWLINE);
+ vty_out (vty, "debug pim packets joins%s", VTY_NEWLINE);
++writes;
}