mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 06:50:17 +00:00
zebrad: Correct problem removing dead routes from rib due to NHT issue
Fix for another issue with next-hop tracking for overlapping static routes created a problem removing the dead routes. This fix corrects that error. Ticket: CM-13710 Signed-off-by: Don Slice Reviewed By: Donald Sharp Testing Done: ospf-smoke, bgp-smoke
This commit is contained in:
parent
9c5cd62f08
commit
63d825b0db
@ -546,7 +546,7 @@ zebra_rnh_process_static_routes (vrf_id_t vrfid, int family,
|
||||
{
|
||||
RNODE_FOREACH_RIB(static_rn, srib)
|
||||
{
|
||||
if (srib->type == ZEBRA_ROUTE_STATIC)
|
||||
if (srib->type != ZEBRA_ROUTE_STATIC)
|
||||
continue;
|
||||
|
||||
/* Set the filter flag for the correct nexthop - static route may
|
||||
|
Loading…
Reference in New Issue
Block a user