Fix an issue in format_vxlan_gpe_tunnel

Change-Id: Ib283c75505b787f715e34f5b325dda8a6c2fa125
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
This commit is contained in:
Hongjun Ni
2016-05-24 02:54:10 +08:00
parent b4d8927ac3
commit 4a71314e0b

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);
}