diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-09-21 16:08:50 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-09-22 12:04:17 +0300 | 
| commit | e0a87954848311b61e69fb957dcf0382429f15f9 (patch) | |
| tree | 06d928e5e9ee5695171c591d0ecb83af21f5076c /bgpd/bgp_route.h | |
| parent | c39506d80f3e42059e00e562f0c5b376a5246ddd (diff) | |
bgpd: Use proper AFI when dumping information for dampening stuff
Before we called IPv4 for IPv6 dampening info.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_route.h')
| -rw-r--r-- | bgpd/bgp_route.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_route.h b/bgpd/bgp_route.h index 54fad03e6d..e9f48ea647 100644 --- a/bgpd/bgp_route.h +++ b/bgpd/bgp_route.h @@ -887,7 +887,7 @@ extern void route_vty_out_detail(struct vty *vty, struct bgp *bgp,  				 struct bgp_path_info *path, afi_t afi,  				 safi_t safi, enum rpki_states,  				 json_object *json_paths); -extern int bgp_show_table_rd(struct vty *vty, struct bgp *bgp, safi_t safi, +extern int bgp_show_table_rd(struct vty *vty, struct bgp *bgp, afi_t afi, safi_t safi,  			     struct bgp_table *table, struct prefix_rd *prd,  			     enum bgp_show_type type, void *output_arg,  			     uint16_t show_flags);  | 
