summaryrefslogtreecommitdiffstats
path: root/proto/ospf/neighbor.c
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2005-02-20 05:27:56 +0100
committerOndrej Filip <feela@network.cz>2005-02-20 05:27:56 +0100
commitd8c7d9e8846f025e42227c64e992a3a52ca7dfb4 (patch)
tree4f090dda24bf8288b3af358fd3375c0374e75d93 /proto/ospf/neighbor.c
parent7de7470a2a6c649ce4d4ce52146e84e6638ebf58 (diff)
downloadbird-d8c7d9e8846f025e42227c64e992a3a52ca7dfb4.tar
bird-d8c7d9e8846f025e42227c64e992a3a52ca7dfb4.zip
Since now I can also use 'dead interval', not just 'dead counter'.
Diffstat (limited to 'proto/ospf/neighbor.c')
-rw-r--r--proto/ospf/neighbor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c
index 59a9805..7696d45 100644
--- a/proto/ospf/neighbor.c
+++ b/proto/ospf/neighbor.c
@@ -309,7 +309,7 @@ ospf_neigh_sm(struct ospf_neighbor *n, int event)
case NEIGHBOR_DOWN:
neigh_chstate(n, NEIGHBOR_INIT);
default:
- tm_start(n->inactim, n->ifa->deadc * n->ifa->helloint); /* Restart inactivity timer */
+ tm_start(n->inactim, n->ifa->dead); /* Restart inactivity timer */
break;
}
break;