Skip to content

Commit

Permalink
Merge pull request FRRouting#16730 from FRRouting/mergify/bp/stable/9…
Browse files Browse the repository at this point in the history
….1/pr-16667

isisd: fix update link params after circuit is up (backport FRRouting#16667)
  • Loading branch information
Jafaral committed Sep 3, 2024
2 parents ee98186 + 8fb29a3 commit f4bb779
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 @@ -327,7 +327,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 f4bb779

Please sign in to comment.