Skip to content

Commit

Permalink
Merge pull request #16667 from louis-6wind/fix-isis-link-params-circu…
Browse files Browse the repository at this point in the history
…it-up

isisd: fix update link params after circuit is up
  • Loading branch information
riw777 committed Sep 3, 2024
2 parents 1e32a30 + 6ce6b7a commit 2446c63
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 @@ -331,7 +331,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 2446c63

Please sign in to comment.