diff options
author | Alberto Compagno <acompagn+fdio@cisco.com> | 2020-01-22 10:51:03 +0100 |
---|---|---|
committer | Alberto Compagno <acompagn+fdio@cisco.com> | 2020-01-22 10:51:03 +0100 |
commit | 72688011bddfc5008951e5004e45aa9154a7b0d2 (patch) | |
tree | 1b84b91aa9667090f8d8b73fc283de1007644e54 /ctrl/libhicnctrl/src/hicn_plugin_api.c | |
parent | 6a371e0002ced0f287f96ddb440cc6f1c3507385 (diff) |
[HICN-487] Calling the right function to parse the face del reply message
Change-Id: Icf155be96947e2c1a692bae5bb7919ce4fa0bdf6
Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Diffstat (limited to 'ctrl/libhicnctrl/src/hicn_plugin_api.c')
-rw-r--r-- | ctrl/libhicnctrl/src/hicn_plugin_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctrl/libhicnctrl/src/hicn_plugin_api.c b/ctrl/libhicnctrl/src/hicn_plugin_api.c index b2de6cc2f..52c83959e 100644 --- a/ctrl/libhicnctrl/src/hicn_plugin_api.c +++ b/ctrl/libhicnctrl/src/hicn_plugin_api.c @@ -1383,9 +1383,9 @@ int hc_face_delete(hc_sock_t *s, hc_face_t *face) { .cmd = ACTION_DELETE, .cmd_id = REMOVE_ROUTE, .size_in = - sizeof(vapi_msg_hicn_api_face_del), + sizeof(vapi_msg_hicn_api_face_del), .size_out = 0, - .parse = (HC_PARSE)parse_route_delete, + .parse = (HC_PARSE)parse_face_delete, }; return hc_execute_command(s, (hc_msg_t *)&msg, sizeof(msg), ¶ms, NULL, |