From 981566521462dbd750790a72ec735398d6e687e3 Mon Sep 17 00:00:00 2001 From: Stephen Worley Date: Mon, 29 Apr 2019 19:24:26 -0400 Subject: [PATCH] zebra: Add PBR to route_info array Add PBR to the route_info array for handling processing of the PBR route type. Signed-off-by: Stephen Worley --- zebra/zebra_rib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 4cf4c24060..231a49751c 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -98,6 +98,7 @@ static const struct { [ZEBRA_ROUTE_BGP_DIRECT_EXT] = {ZEBRA_ROUTE_BGP_DIRECT_EXT, 20, 3}, [ZEBRA_ROUTE_BABEL] = {ZEBRA_ROUTE_BABEL, 100, 2}, [ZEBRA_ROUTE_SHARP] = {ZEBRA_ROUTE_SHARP, 150, 4}, + [ZEBRA_ROUTE_PBR] = {ZEBRA_ROUTE_PBR, 200, 4}, /* no entry/default: 150 */ }; -- 2.39.5