diff options
| author | Russ White <russ@riw.us> | 2020-11-17 07:16:12 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-17 07:16:12 -0500 | 
| commit | 2bd9d50ca1229d33de00cba1cdf34550862f5a6f (patch) | |
| tree | 13c3d63669006db4d27b1175f832d2e80906eeed /bgpd/bgp_conditional_adv.c | |
| parent | 20874770f9b225a21f08c44852f63faed3306ed1 (diff) | |
| parent | 1782514fb957d86c0e2510f2e76651345c5c9fb1 (diff) | |
Merge pull request #7523 from donaldsharp/route_map_object_t
*: Remove route_map_object_t from the system
Diffstat (limited to 'bgpd/bgp_conditional_adv.c')
| -rw-r--r-- | bgpd/bgp_conditional_adv.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_conditional_adv.c b/bgpd/bgp_conditional_adv.c index ca67d49c8a..b5cd1b52b7 100644 --- a/bgpd/bgp_conditional_adv.c +++ b/bgpd/bgp_conditional_adv.c @@ -47,7 +47,7 @@ bgp_check_rmap_prefixes_in_bgp_table(struct bgp_table *table,  			RESET_FLAG(dummy_attr.rmap_change_flags); -			ret = route_map_apply(rmap, dest_p, RMAP_BGP, &path); +			ret = route_map_apply(rmap, dest_p, &path);  			if (ret != RMAP_PERMITMATCH)  				bgp_attr_flush(&dummy_attr);  			else { @@ -113,7 +113,7 @@ static void bgp_conditional_adv_routes(struct peer *peer, afi_t afi,  			RESET_FLAG(dummy_attr.rmap_change_flags); -			if (route_map_apply(rmap, dest_p, RMAP_BGP, &path) +			if (route_map_apply(rmap, dest_p, &path)  			    != RMAP_PERMITMATCH) {  				bgp_attr_flush(&dummy_attr);  				continue;  | 
