Fix VxLAN-GPE add_del API issue
Change-Id: I4210b3320d3fe841ba7ff1349b6a52affc047338 Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
This commit is contained in:
@ -4569,8 +4569,8 @@ vl_api_vxlan_gpe_add_del_tunnel_t_handler
|
||||
}
|
||||
|
||||
/* Check src & dst are different */
|
||||
if ((a->is_ip6 && memcmp(mp->local, mp->remote, 16) == 0) ||
|
||||
(!a->is_ip6 && memcmp(mp->local, mp->remote, 4) == 0)) {
|
||||
if ((mp->is_ipv6 && memcmp(mp->local, mp->remote, 16) == 0) ||
|
||||
(!mp->is_ipv6 && memcmp(mp->local, mp->remote, 4) == 0)) {
|
||||
rv = VNET_API_ERROR_SAME_SRC_DST;
|
||||
goto out;
|
||||
}
|
||||
|
Reference in New Issue
Block a user