diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2021-09-23 18:03:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-23 18:03:35 +0200 |
commit | d5cd3fd1e0b4398c8f40c7f7241be8bacd5b6927 (patch) | |
tree | 05e07791c707ad493db3217c8d3b29f0fa2d2077 /ospf6d/ospf6_zebra.c | |
parent | Merge pull request #9650 from mjstapp/fix_dup_lookup_netlink (diff) | |
parent | ospf6d: reset areas and redistribution at router-id modification (diff) | |
download | frr-d5cd3fd1e0b4398c8f40c7f7241be8bacd5b6927.tar.xz frr-d5cd3fd1e0b4398c8f40c7f7241be8bacd5b6927.zip |
Merge pull request #9084 from louis-oui/fix-ospf6-router-id
ospf6d: fix LSAs remain in LSDB with an old router-id value
Diffstat (limited to 'ospf6d/ospf6_zebra.c')
-rw-r--r-- | ospf6d/ospf6_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_zebra.c b/ospf6d/ospf6_zebra.c index c2e91d09b..a6929b32c 100644 --- a/ospf6d/ospf6_zebra.c +++ b/ospf6d/ospf6_zebra.c @@ -102,7 +102,7 @@ static int ospf6_router_id_update_zebra(ZAPI_CALLBACK_ARGS) o->router_id_zebra = router_id.u.prefix4.s_addr; - ospf6_router_id_update(o); + ospf6_router_id_update(o, false); return 0; } |