VPP-365: Fix sending of bd_index in lisp_eid_table_add_del_map

Change-Id: I1f8fd65fa33b0bc7ee07aa0eeb5f794a7ede9537
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
This commit is contained in:
Filip Tehlar
2016-08-30 15:05:18 +02:00
committed by Florin Coras
parent 459f4d61a8
commit 5a4e2dde94

View File

@ -12331,11 +12331,17 @@ api_lisp_eid_table_add_del_map (vat_main_t * vam)
return -99;
}
if (vrf_set && bd_index_set)
{
errmsg ("error: both vrf and bd entered!");
return -99;
}
M (LISP_EID_TABLE_ADD_DEL_MAP, lisp_eid_table_add_del_map);
mp->is_add = is_add;
mp->vni = htonl (vni);
mp->dp_table = htonl (vrf);
mp->dp_table = vrf_set ? htonl (vrf) : htonl (bd_index);
mp->is_l2 = bd_index_set;
/* send */