summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bgpd/bgp_route.c2
-rw-r--r--bgpd/bgpd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c
index aabd264a..eaedbc4c 100644
--- a/bgpd/bgp_route.c
+++ b/bgpd/bgp_route.c
@@ -9381,7 +9381,7 @@ bgp_table_stats_vty (struct vty *vty, const char *name,
safi = SAFI_UNICAST;
else if (strncmp (safi_str, "vpnv4", 5) == 0)
safi = BGP_SAFI_VPNV4;
- else if (strncmp (safi_str, "vpnv6", 6) == 0)
+ else if (strncmp (safi_str, "vpnv6", 5) == 0)
safi = BGP_SAFI_VPNV6;
else
{
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h
index d415814c..f396f726 100644
--- a/bgpd/bgpd.h
+++ b/bgpd/bgpd.h
@@ -729,7 +729,7 @@ struct bgp_nlri
/* SAFI which used in open capability negotiation. */
#define BGP_SAFI_VPNV4 128
-#define BGP_SAFI_VPNV6 129
+#define BGP_SAFI_VPNV6 128
/* Max TTL value. */
#define TTL_MAX 255