summaryrefslogtreecommitdiff
path: root/ospfd/ospf_vty.c
diff options
context:
space:
mode:
authorpaul <paul>2005-11-26 13:31:11 +0000
committerpaul <paul>2005-11-26 13:31:11 +0000
commitc9c93d50cc9cae2f7878434431eafab8f7ee8d89 (patch)
treef027b74dc63f5716169bdfcdaedf7980abb58d2a /ospfd/ospf_vty.c
parent00c290e02edd6c906b669de9f31a45d14ed8bec0 (diff)
[ospfd] rename graceful to deferred, fix a tiny compile warning.
2005-11-26 Paul Jakma <paul.jakma@sun.com> * (general) s/graceful/deferred/ in all files, the former term is confusing wrt OSPF Graceful-Restart. * ospfd.c: (ospf_deferred_shutdown_check) dont return a function which returns void. SOS complains about this. (ospf_finish)
Diffstat (limited to 'ospfd/ospf_vty.c')
-rw-r--r--ospfd/ospf_vty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index 385eb8d4..cc66d119 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -2606,9 +2606,9 @@ DEFUN (show_ip_ospf,
VTY_NEWLINE);
/* Graceful shutdown */
- if (ospf->t_graceful_shutdown)
- vty_out (vty, " Graceful shutdown in progress, %s remaining%s",
- ospf_timer_dump (ospf->t_graceful_shutdown,
+ if (ospf->t_deferred_shutdown)
+ vty_out (vty, " Deferred shutdown in progress, %s remaining%s",
+ ospf_timer_dump (ospf->t_deferred_shutdown,
timebuf, sizeof (timebuf)), VTY_NEWLINE);
/* Show capability. */
vty_out (vty, " Supports only single TOS (TOS0) routes%s", VTY_NEWLINE);