From aca72fda8f251c866f88becd5bec4c215104b102 Mon Sep 17 00:00:00 2001 From: ajs Date: Thu, 31 Mar 2005 15:18:21 +0000 Subject: 2005-03-31 Andrew J. Schorr * ospf_dump.c: (show_debugging_ospf) Show if ospf event debugging is turned on. [backport candidate] --- ospfd/ChangeLog | 5 +++++ ospfd/ospf_dump.c | 6 ++++++ 2 files changed, 11 insertions(+) (limited to 'ospfd') diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 98cabbd6..8facd560 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,3 +1,8 @@ +2005-03-31 Andrew J. Schorr + + * ospf_dump.c: (show_debugging_ospf) Show if ospf event debugging + is turned on. + 2005-03-29 Andrew J. Schorr * ospf_zebra.c: (ospf_interface_state_up) If the MTU of an operative diff --git a/ospfd/ospf_dump.c b/ospfd/ospf_dump.c index 17cf28c7..7d738f9e 100644 --- a/ospfd/ospf_dump.c +++ b/ospfd/ospf_dump.c @@ -1384,6 +1384,10 @@ DEFUN (show_debugging_ospf, vty_out (vty, "OSPF debugging status:%s", VTY_NEWLINE); + /* Show debug status for events. */ + if (IS_DEBUG_OSPF(event,EVENT)) + vty_out (vty, " OSPF event debugging is on%s", VTY_NEWLINE); + /* Show debug status for ISM. */ if (IS_DEBUG_OSPF (ism, ISM) == OSPF_DEBUG_ISM) vty_out (vty, " OSPF ISM debugging is on%s", VTY_NEWLINE); @@ -1458,6 +1462,8 @@ DEFUN (show_debugging_ospf, if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) vty_out (vty, " OSPF Zebra redistribute debugging is on%s", VTY_NEWLINE); } + + /* Show debug status for NSSA. */ if (IS_DEBUG_OSPF (nssa, NSSA) == OSPF_DEBUG_NSSA) vty_out (vty, " OSPF NSSA debugging is on%s", VTY_NEWLINE); -- cgit v1.2.1