[ospfd] When writing out config, show "debug ospf nsm status" properly

2006-06-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

	* ospf_dump.c: (config_write_debug) Fix typo to show debug ospf nsm
	  status properly (not ism status).
This commit is contained in:
Andrew J. Schorr 2006-06-24 19:40:13 +00:00
parent 6e72cb6a09
commit 0ffb7094d3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-06-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* ospf_dump.c: (config_write_debug) Fix typo to show debug ospf nsm
status properly (not ism status).
2006-06-17 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* ospf_vty.c: ({no_,}ospf_passive_interface) Replace if_lookup_by_name

View File

@ -1544,7 +1544,7 @@ config_write_debug (struct vty *vty)
else
{
if (IS_CONF_DEBUG_OSPF (nsm, NSM_STATUS))
vty_out (vty, "debug ospf ism status%s", VTY_NEWLINE);
vty_out (vty, "debug ospf nsm status%s", VTY_NEWLINE);
if (IS_CONF_DEBUG_OSPF (nsm, NSM_EVENTS))
vty_out (vty, "debug ospf nsm event%s", VTY_NEWLINE);
if (IS_CONF_DEBUG_OSPF (nsm, NSM_TIMERS))