From ea4ffc9009ac4596fe865fd5f7e8363cdacbbd66 Mon Sep 17 00:00:00 2001 From: paul Date: Fri, 21 Oct 2005 20:04:41 +0000 Subject: 2005-10-21 Paul Jakma * ospf_dump.c: (ospf_timeval_dump) fix ms adjustment, thanks to Andrew Schorr. * ospf_vty.c: (ospf_config_write) fix write out of spf timers configuration. --- ospfd/ospf_vty.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ospfd/ospf_vty.c') diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 5263f15c..2115b987 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -7603,9 +7603,11 @@ ospf_config_write (struct vty *vty) /* SPF timers print. */ if (ospf->spf_delay != OSPF_SPF_DELAY_DEFAULT || - ospf->spf_holdtime != OSPF_SPF_HOLDTIME_DEFAULT) - vty_out (vty, " timers spf %d %d%s", - ospf->spf_delay, ospf->spf_holdtime, VTY_NEWLINE); + ospf->spf_holdtime != OSPF_SPF_HOLDTIME_DEFAULT || + ospf->spf_max_holdtime != OSPF_SPF_MAX_HOLDTIME_DEFAULT) + vty_out (vty, " timers throttle spf %d %d %d%s", + ospf->spf_delay, ospf->spf_holdtime, + ospf->spf_max_holdtime, VTY_NEWLINE); /* SPF refresh parameters print. */ if (ospf->lsa_refresh_interval != OSPF_LSA_REFRESH_INTERVAL_DEFAULT) -- cgit v1.2.1