fix OSPF lifetime interval

This commit is contained in:
Christian
2024-03-22 19:07:49 +01:00
parent c11db83bd8
commit c20fb8e00d
+1 -1
View File
@@ -282,7 +282,7 @@ ospf_lsa_lifetime(ospf_lsa_s *lsa)
if(lsa->age < OSPF_LSA_MAX_AGE) {
sec = OSPF_LSA_MAX_AGE - lsa->age;
timer_add(&g_ctx->timer_root, &lsa->timer_lifetime,
"OSPF LIFETIME", sec, 6,
"OSPF LIFETIME", sec, 0,
lsa, &ospf_lsa_lifetime_job);
} else {
lsa->expired = true;