zebra_rib: Revert work-around for zebra marking recursive static route as inactive.
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index c6dbdec..effe233 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -524,13 +524,7 @@
return 1;
}
- else if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_INTERNAL) ||
- match->type == ZEBRA_ROUTE_KERNEL)
- /*
- || match->type == ZEBRA_ROUTE_KERNEL
- This prevents zebra from marking recursive static route as inactive.
- See pimd/TODO T26.
- */
+ else if (CHECK_FLAG (rib->flags, ZEBRA_FLAG_INTERNAL))
{
resolved = 0;
for (newhop = match->nexthop; newhop; newhop = newhop->next)