Skip to content

Commit

Permalink
Merge pull request #10004 from FRRouting/mergify/bp/stable/8.0/pr-9984
Browse files Browse the repository at this point in the history
bgpd: Set afi by default to AFI_IP6 for `show bgp vrf/view all` (backport #9984)
  • Loading branch information
idryzhov committed Nov 9, 2021
2 parents 338d3b0 + 4284e82 commit 471e76a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bgpd/bgp_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -12124,7 +12124,7 @@ DEFPY (show_ip_bgp_instance_all,
JSON_STR
"Increase table width for longer prefixes\n")
{
afi_t afi = AFI_IP;
afi_t afi = AFI_IP6;
safi_t safi = SAFI_UNICAST;
struct bgp *bgp = NULL;
int idx = 0;
Expand Down Expand Up @@ -13747,7 +13747,7 @@ DEFUN (show_ip_bgp_flowspec_routes_detailed,
"Detailed information on flowspec entries\n"
JSON_STR)
{
afi_t afi = AFI_IP;
afi_t afi = AFI_IP6;
safi_t safi = SAFI_UNICAST;
struct bgp *bgp = NULL;
int idx = 0;
Expand Down

0 comments on commit 471e76a

Please sign in to comment.