mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 11:25:41 +00:00
Merge pull request #10063 from idryzhov/ospf-gr-guarded-code
ospfd: fix code being guarded by debug check
This commit is contained in:
commit
f22a74fee0
@ -76,7 +76,8 @@ static int ospf_inactivity_timer(struct thread *thread)
|
||||
*/
|
||||
if (!OSPF_GR_IS_ACTIVE_HELPER(nbr))
|
||||
OSPF_NSM_EVENT_SCHEDULE(nbr, NSM_InactivityTimer);
|
||||
else if (IS_DEBUG_OSPF_GR) {
|
||||
else {
|
||||
if (IS_DEBUG_OSPF_GR)
|
||||
zlog_debug(
|
||||
"%s, Acting as HELPER for this neighbour, So restart the dead timer",
|
||||
__func__);
|
||||
|
Loading…
Reference in New Issue
Block a user