From: hasso Date: Tue, 31 Aug 2004 12:04:33 +0000 (+0000) Subject: Please, tell me truth about what debugging status you are displaying. X-Git-Tag: frr-2.0-rc1~3592 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=df43a137236e7df433fbd3c633245459d4fd951b;p=matthieu%2Ffrr.git Please, tell me truth about what debugging status you are displaying. --- diff --git a/ospfd/ospf_dump.c b/ospfd/ospf_dump.c index c94fda150c..3711e9f0f9 100644 --- a/ospfd/ospf_dump.c +++ b/ospfd/ospf_dump.c @@ -1393,7 +1393,7 @@ DEFUN (show_debugging_ospf, { int i; - vty_out (vty, "Zebra debugging status:%s", VTY_NEWLINE); + vty_out (vty, "OSPF debugging status:%s", VTY_NEWLINE); /* Show debug status for ISM. */ if (IS_DEBUG_OSPF (ism, ISM) == OSPF_DEBUG_ISM) diff --git a/ripd/rip_debug.c b/ripd/rip_debug.c index 4f09200aa8..fd735d0fb0 100644 --- a/ripd/rip_debug.c +++ b/ripd/rip_debug.c @@ -35,7 +35,7 @@ DEFUN (show_debugging_rip, DEBUG_STR RIP_STR) { - vty_out (vty, "Zebra debugging status:%s", VTY_NEWLINE); + vty_out (vty, "RIP debugging status:%s", VTY_NEWLINE); if (IS_RIP_DEBUG_EVENT) vty_out (vty, " RIP event debugging is on%s", VTY_NEWLINE); diff --git a/ripngd/ripng_debug.c b/ripngd/ripng_debug.c index 2cff3d018b..b9a8fb612f 100644 --- a/ripngd/ripng_debug.c +++ b/ripngd/ripng_debug.c @@ -36,7 +36,7 @@ DEFUN (show_debugging_ripng, "RIPng configuration\n" "Debugging information\n") { - vty_out (vty, "Zebra debugging status:%s", VTY_NEWLINE); + vty_out (vty, "RIPng debugging status:%s", VTY_NEWLINE); if (IS_RIPNG_DEBUG_EVENT) vty_out (vty, " RIPng event debugging is on%s", VTY_NEWLINE);