]> git.puffer.fish Git - mirror/frr.git/commitdiff
pimd: Fix show run output to be correct.
authorDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 30 Nov 2016 19:35:09 +0000 (14:35 -0500)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Thu, 22 Dec 2016 01:26:17 +0000 (20:26 -0500)
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>
pimd/pim_vty.c

index b8a361a26092068c1847358367c717b27d472b6f..3a7d056cb5c66bed55dfc4608c96b02e7bd05cb8 100644 (file)
@@ -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;
   }