Skip to content

Commit

Permalink
Merge pull request #16732 from FRRouting/mergify/bp/stable/8.5/pr-16667
Browse files Browse the repository at this point in the history
isisd: fix update link params after circuit is up (backport #16667)
  • Loading branch information
ton31337 authored Sep 4, 2024
2 parents 5313e9d + 837f885 commit 6f73252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isisd/isis_te.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ void isis_link_params_update(struct isis_circuit *circuit,
return;

/* Sanity Check */
if ((ifp == NULL) || (circuit->state != C_STATE_UP))
if (ifp == NULL)
return;

te_debug("ISIS-TE(%s): Update circuit parameters for interface %s",
Expand Down

0 comments on commit 6f73252

Please sign in to comment.