VPP-89: Fix an issue in format_vxlan_gpe_tunnel

Change-Id: Ie81e2eb918e441ddaa9e7ab57e8bb0129f0f4f8f
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
This commit is contained in:
Hongjun Ni
2016-05-25 17:35:51 +08:00
parent 205c75c8db
commit aafe40deae

View File

@ -30,12 +30,16 @@ u8 * format_vxlan_gpe_tunnel (u8 * s, va_list * args)
{
case VXLAN_GPE_PROTOCOL_IP4:
s = format (s, "next-protocol ip4");
break;
case VXLAN_GPE_PROTOCOL_IP6:
s = format (s, "next-protocol ip6");
break;
case VXLAN_GPE_PROTOCOL_ETHERNET:
s = format (s, "next-protocol ethernet");
break;
case VXLAN_GPE_PROTOCOL_NSH:
s = format (s, "next-protocol nsh");
break;
default:
s = format (s, "next-protocol unknown %d", t->protocol);
}