+2005-03-31 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
+ * ospf_dump.c: (show_debugging_ospf) Show if ospf event debugging
+ is turned on.
+
2005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* ospf_zebra.c: (ospf_interface_state_up) If the MTU of an operative
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);
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);