Submitted by Christian Franke a few days ago. See patch 1988.
What is the action taken for duplicate/identical patches. Nack, so that they can be easily identified and dropped?
--Jafar On 6/20/2016 3:35 AM, Philippe Guibert wrote:
For vpnv4, RIB is reachable through safi index set to SAFI_MPLS_VPN, whereas value entered through vty was SAFI_MPLS_LABELED_VPN. The value to be used for parsing RIB is SAFI_MPLS_VPN. Signed-off-by: Philippe Guibert <[email protected]> --- bgpd/bgp_route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index c364372f8bf7..2fd16751aa3b 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -11848,7 +11848,7 @@ bgp_table_stats_vty (struct vty *vty, const char *name, safi = SAFI_UNICAST; break; case 'v': - safi = SAFI_MPLS_LABELED_VPN; + safi = SAFI_MPLS_VPN; break; case 'e': safi = SAFI_ENCAP;
_______________________________________________ Quagga-dev mailing list [email protected] https://lists.quagga.net/mailman/listinfo/quagga-dev
