diff options
| author | Russ White <russ@riw.us> | 2022-10-12 09:30:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-12 09:30:36 -0400 |
| commit | 984eb32b588186ac946733c5c3fe8032bae28ebc (patch) | |
| tree | fadbfb00938fbd06eb92909bfe628857b7b3d00f /ospfd/ospf_route.c | |
| parent | 87d54383c520799a90457e84e2242b6fa2024f73 (diff) | |
| parent | 80f6ea8b99188b9d8e79fe4fc1740cc92375d7bc (diff) | |
Merge pull request #11159 from maduri111/bgpd-orr
bgpd: optimal route reflection
Diffstat (limited to 'ospfd/ospf_route.c')
| -rw-r--r-- | ospfd/ospf_route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_route.c b/ospfd/ospf_route.c index 6360d8ec60..26f593f089 100644 --- a/ospfd/ospf_route.c +++ b/ospfd/ospf_route.c @@ -151,8 +151,8 @@ void ospf_route_table_free(struct route_table *rt) otherwise return 0. Since the ZEBRA-RIB does an implicit withdraw, it is not necessary to send a delete, an add later will act like an implicit delete. */ -static int ospf_route_exist_new_table(struct route_table *rt, - struct prefix_ipv4 *prefix) +int ospf_route_exist_new_table(struct route_table *rt, + struct prefix_ipv4 *prefix) { struct route_node *rn; |
