From adbdfdf7489e1909f29e2dd02edb7d15c258ed19 Mon Sep 17 00:00:00 2001 From: Jordan Augé Date: Fri, 16 Sep 2022 13:56:34 +0200 Subject: fix(hicn-light): fix routing issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ref: HICN-786 Change-Id: I541c87d2d810907489ca4f59b3d7740a18c108fb Signed-off-by: Jordan Augé --- ctrl/libhicnctrl/src/modules/hicn_light/route.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ctrl') diff --git a/ctrl/libhicnctrl/src/modules/hicn_light/route.c b/ctrl/libhicnctrl/src/modules/hicn_light/route.c index 1adfe4f36..22cf6fbc5 100644 --- a/ctrl/libhicnctrl/src/modules/hicn_light/route.c +++ b/ctrl/libhicnctrl/src/modules/hicn_light/route.c @@ -33,22 +33,22 @@ static int hicnlight_route_parse(const uint8_t *buffer, size_t size, cmd_route_list_item_t *item = (cmd_route_list_item_t *)buffer; if (!IS_VALID_NAME(item->face_name)) { - ERROR("[hc_connection_parse] Invalid face_name received"); + ERROR("[hc_route_parse] Invalid face_name received"); return -1; } if (!IS_VALID_ID(item->face_id)) { - ERROR("[hc_connection_parse] Invalid face_id received"); + ERROR("[hc_route_parse] Invalid face_id received"); return -1; } if (!IS_VALID_FAMILY(item->family)) { - ERROR("[hc_listener_parse] Invalid family received"); + ERROR("[hc_route_parse] Invalid family received"); return -1; } if (!IS_VALID_ADDRESS(item->remote_addr)) { - ERROR("[hc_connection_parse] Invalid address received"); + ERROR("[hc_route_parse] Invalid address received"); return -1; } -- cgit 1.2.3-korg