diff options
author | Russ White <russ@riw.us> | 2024-09-03 16:55:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 16:55:39 +0200 |
commit | 2446c63c2873757adee22fe053472eff0bfa5511 (patch) | |
tree | d90ff33767a1ca1ae18178dd8de74e1a88886764 /isisd | |
parent | Merge pull request #16713 from opensourcerouting/fix/bgpd_parse_received_err (diff) | |
parent | isisd: fix update link params after circuit is up (diff) | |
download | frr-2446c63c2873757adee22fe053472eff0bfa5511.tar.xz frr-2446c63c2873757adee22fe053472eff0bfa5511.zip |
Merge pull request #16667 from louis-6wind/fix-isis-link-params-circuit-up
isisd: fix update link params after circuit is up
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/isis_te.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_te.c b/isisd/isis_te.c index a550d5938..c9af39ce5 100644 --- a/isisd/isis_te.c +++ b/isisd/isis_te.c @@ -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", |