diff options
author | Michele Papalini <micpapal@cisco.com> | 2019-04-01 16:29:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2019-04-01 16:29:49 +0000 |
commit | 2cb38134e7f159dad9209b995f13cac1feefa8e2 (patch) | |
tree | 1d7385717e153cadbc18b1eb37df3cbb8a0b4764 /hicn-plugin | |
parent | 0fda46405e0d75613245a47bfe0110b957af3cdc (diff) | |
parent | 508bbc426747750cfa7171a0ae1d1c777c98a800 (diff) |
Merge "[HICN-157] Fixed wrong host to network conversion of face id in hicn_face_ip_add binary api"
Diffstat (limited to 'hicn-plugin')
-rw-r--r-- | hicn-plugin/src/hicn_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hicn-plugin/src/hicn_api.c b/hicn-plugin/src/hicn_api.c index b4d518774..c8b3dc269 100644 --- a/hicn-plugin/src/hicn_api.c +++ b/hicn-plugin/src/hicn_api.c @@ -268,7 +268,7 @@ vl_api_hicn_api_face_ip_add_t_handler (vl_api_hicn_api_face_ip_add_t * mp) /* *INDENT-OFF* */ REPLY_MACRO2 (VL_API_HICN_API_FACE_IP_ADD_REPLY /* , rmp, mp, rv */ ,( { - rmp->faceid = clib_host_to_net_u16 ((u32) faceid); + rmp->faceid = clib_host_to_net_u32 ((u32) faceid); rmp->retval = rv; })); /* *INDENT-ON* */ |