diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-02-16 08:22:43 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-02-16 08:22:43 +0000 |
commit | 7147f61edc347ecf8bf6a0313c08209a0fe5bcdd (patch) | |
tree | f73c359137af42aebbfb58aca2e4503d80ffdb1c /usr.sbin/ospfctl | |
parent | 6c7620d6fa425688f777ffe28116e5aa22c10cea (diff) |
allow spf-delay and spf-holdtime to be specified in msec so ospfd can
better respond to rapid topology changes.
developed while working with joshua atterbury
ok claudio@ as part of a larger diff.
Diffstat (limited to 'usr.sbin/ospfctl')
-rw-r--r-- | usr.sbin/ospfctl/ospfctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ospfctl/ospfctl.c b/usr.sbin/ospfctl/ospfctl.c index af601c9fe21..0350734c6d2 100644 --- a/usr.sbin/ospfctl/ospfctl.c +++ b/usr.sbin/ospfctl/ospfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfctl.c,v 1.50 2009/11/02 20:23:29 claudio Exp $ */ +/* $OpenBSD: ospfctl.c,v 1.51 2010/02/16 08:22:42 dlg Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -327,8 +327,8 @@ show_summary_msg(struct imsg *imsg) else printf("disabled\n"); - printf("SPF delay is %d sec(s), hold time between two SPFs " - "is %d sec(s)\n", sum->spf_delay, sum->spf_hold_time); + printf("SPF delay is %d msec(s), hold time between two SPFs " + "is %d msec(s)\n", sum->spf_delay, sum->spf_hold_time); printf("Number of external LSA(s) %d\n", sum->num_ext_lsa); printf("Number of areas attached to this router: %d\n", sum->num_area); |