Skip to content

Commit

Permalink
Merge pull request FRRouting#16881 from donaldsharp/zebra_nhg_install…
Browse files Browse the repository at this point in the history
…_fix

zebra: Pass in ZEBRA_ROUTE_MAX instead of true
  • Loading branch information
Jafaral authored Sep 20, 2024
2 parents 65609a6 + 58722b9 commit bb995fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zebra/zebra_nhg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,8 @@ static void zebra_nhg_handle_install(struct nhg_hash_entry *nhe, bool install)
"%s nh id %u (flags 0x%x) associated dependent NHG %pNG install",
__func__, nhe->id, nhe->flags,
rb_node_dep->nhe);
zebra_nhg_install_kernel(rb_node_dep->nhe, true);
zebra_nhg_install_kernel(rb_node_dep->nhe,
ZEBRA_ROUTE_MAX);
}
}
}
Expand Down

0 comments on commit bb995fb

Please sign in to comment.