summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlberto Compagno <acompagn+fdio@cisco.com>2020-01-22 12:09:45 +0000
committerGerrit Code Review <gerrit@fd.io>2020-01-22 12:09:45 +0000
commit30cfeb43a0fda6ddcee3c9875bf67cbddd62b7f3 (patch)
tree3e769d06a9d361be83d16904d778b048c6b31a3b
parentea6e0a1c5541b7d6cd28c76818b0a17a88560529 (diff)
parent72688011bddfc5008951e5004e45aa9154a7b0d2 (diff)
Merge "[HICN-487] Calling the right function to parse the face del reply message"
-rw-r--r--ctrl/libhicnctrl/src/hicn_plugin_api.c4
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), &params, NULL,