From a23ee35b2b5baf2453a0f5a0f2a3f53b6469fc26 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 30 Nov 2016 14:35:09 -0500 Subject: [PATCH] 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 Reviewed-by: Daniel Walton --- pimd/pim_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5