Merge pull request #15953 from FRRouting/mergify/bp/stable/9.1/pr-15846

ospfd: fix the bug where ip_ospf_dead-interval_minimal_hello-multiplier did not reset hello timer (backport #15846)
This commit is contained in:
Donatas Abraitis 2024-05-08 14:47:34 +03:00 committed by GitHub
commit 5fa2977d1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8266,6 +8266,8 @@ static int ospf_vty_dead_interval_set(struct vty *vty, const char *interval_str,
ospf_nbr_timer_update(oi);
}
if (params->fast_hello != OSPF_FAST_HELLO_DEFAULT)
ospf_reset_hello_timer(ifp, addr, false);
return CMD_SUCCESS;
}