VPP-315: Fix "show vxlan-gpe" issue

Change-Id: If721d3b701a7182e595ece1294c2767981d29d3e
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
This commit is contained in:
Hongjun Ni
2016-08-05 00:58:20 +08:00
committed by Dave Barach
parent f43f6df44f
commit c8af24fa99

View File

@ -24,8 +24,8 @@ u8 * format_vxlan_gpe_tunnel (u8 * s, va_list * args)
s = format (s, "[%d] local: %U remote: %U ",
t - gm->tunnels,
format_ip46_address, &t->local,
format_ip46_address, &t->remote);
format_ip46_address, &t->local, IP46_TYPE_ANY,
format_ip46_address, &t->remote, IP46_TYPE_ANY);
s = format (s, " vxlan VNI %d ", t->vni);