Skip to content

Commit c20fb8e

Browse files
committed
fix OSPF lifetime interval
1 parent c11db83 commit c20fb8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/bngblaster/src/ospf/ospf_lsa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ ospf_lsa_lifetime(ospf_lsa_s *lsa)
282282
if(lsa->age < OSPF_LSA_MAX_AGE) {
283283
sec = OSPF_LSA_MAX_AGE - lsa->age;
284284
timer_add(&g_ctx->timer_root, &lsa->timer_lifetime,
285-
"OSPF LIFETIME", sec, 6,
285+
"OSPF LIFETIME", sec, 0,
286286
lsa, &ospf_lsa_lifetime_job);
287287
} else {
288288
lsa->expired = true;

0 commit comments

Comments
 (0)