From 72688011bddfc5008951e5004e45aa9154a7b0d2 Mon Sep 17 00:00:00 2001 From: Alberto Compagno Date: Wed, 22 Jan 2020 10:51:03 +0100 Subject: [HICN-487] Calling the right function to parse the face del reply message Change-Id: Icf155be96947e2c1a692bae5bb7919ce4fa0bdf6 Signed-off-by: Alberto Compagno --- ctrl/libhicnctrl/src/hicn_plugin_api.c | 4 ++-- 1 file 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, -- cgit 1.2.3-korg