diff options
author | Mark Stapp <mjs.ietf@gmail.com> | 2023-03-03 21:38:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-03 21:38:32 +0100 |
commit | e879c3d8a2ac8769a982d009e15b395a69e7a90a (patch) | |
tree | 72b795c86575386ebc183b007717001240c6c2b6 /ospf6d | |
parent | Merge pull request #12937 from opensourcerouting/ospf6d-redist (diff) | |
parent | ospf6d: fix processing of inter-area-prefix-LSAs with the LA-bit set (diff) | |
download | frr-e879c3d8a2ac8769a982d009e15b395a69e7a90a.tar.xz frr-e879c3d8a2ac8769a982d009e15b395a69e7a90a.zip |
Merge pull request #12935 from opensourcerouting/ospf6d-la-bit
ospf6d: fix processing of inter-area-prefix-LSAs with the LA-bit set
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6_abr.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ospf6d/ospf6_abr.c b/ospf6d/ospf6_abr.c index 0575f5abe..4def3c738 100644 --- a/ospf6d/ospf6_abr.c +++ b/ospf6d/ospf6_abr.c @@ -1136,11 +1136,9 @@ void ospf6_abr_examin_summary(struct ospf6_lsa *lsa, struct ospf6_area *oa) } if (CHECK_FLAG(prefix_lsa->prefix.prefix_options, - OSPF6_PREFIX_OPTION_NU) - || CHECK_FLAG(prefix_lsa->prefix.prefix_options, - OSPF6_PREFIX_OPTION_LA)) { + OSPF6_PREFIX_OPTION_NU)) { if (is_debug) - zlog_debug("Prefix has NU/LA bit set, ignore"); + zlog_debug("Prefix has the NU bit set, ignore"); if (old) ospf6_route_remove(old, table); return; @@ -1153,7 +1151,8 @@ void ospf6_abr_examin_summary(struct ospf6_lsa *lsa, struct ospf6_area *oa) if (!OSPF6_OPT_ISSET(router_lsa->options, OSPF6_OPT_R) || !OSPF6_OPT_ISSET(router_lsa->options, OSPF6_OPT_V6)) { if (is_debug) - zlog_debug("Prefix has NU/LA bit set, ignore"); + zlog_debug( + "Router-LSA has the V6-bit or R-bit unset, ignore"); if (old) ospf6_route_remove(old, table); |