Skip to content

Commit

Permalink
Merge pull request #16731 from FRRouting/mergify/bp/stable/9.0/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
donaldsharp authored Sep 3, 2024
2 parents b2be78e + 7147f95 commit ef60abb
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 ef60abb

Please sign in to comment.