Skip to content

Commit

Permalink
Merge pull request FRRouting#8351 from volta-networks/fix_ospf6_abr_e…
Browse files Browse the repository at this point in the history
…xamin_summary_check_cost_change

ospf6d: fix ospf6_abr_examin_summary to check for a path cost change
  • Loading branch information
mwinter-osr authored Mar 29, 2021
2 parents 5a0f0ca + d8ff370 commit 9b25636
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ospf6d/ospf6_abr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,8 @@ void ospf6_abr_examin_summary(struct ospf6_lsa *lsa, struct ospf6_area *oa)
*/
if (old_entry_updated == false) {
if ((old == NULL) || (old->type != route->type)
|| (old->path.type != route->path.type))
|| (old->path.type != route->path.type)
|| (old->path.cost != route->path.cost))
add_route = true;
}

Expand Down

0 comments on commit 9b25636

Please sign in to comment.