]> git.puffer.fish Git - matthieu/frr.git/commitdiff
2005-03-31 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
authorajs <ajs>
Thu, 31 Mar 2005 15:18:21 +0000 (15:18 +0000)
committerajs <ajs>
Thu, 31 Mar 2005 15:18:21 +0000 (15:18 +0000)
* ospf_dump.c: (show_debugging_ospf) Show if ospf event debugging
  is turned on.

  [backport candidate]

ospfd/ChangeLog
ospfd/ospf_dump.c

index 98cabbd646d09c10c2c66a75ab3cc5601afeb36a..8facd560ccdfc674bfdcb5c4ecea6f8a6b84e65b 100644 (file)
@@ -1,3 +1,8 @@
+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
index 17cf28c79b9c9d9de382b399367da77a7a2d6dbc..7d738f9e7b9e329c9329a4fc9121c9ae79dc0a84 100644 (file)
@@ -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);