From 6903efee92286a18f698a64cbbe99b4881982cdd Mon Sep 17 00:00:00 2001 From: Andreas Urke Date: Tue, 16 May 2023 00:50:01 +0200 Subject: [PATCH] Correct missing renaming of function per PR#2040 --- .../orchestra/orchestra-rule-unicast-per-neighbor-rpl-ns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/services/orchestra/orchestra-rule-unicast-per-neighbor-rpl-ns.c b/os/services/orchestra/orchestra-rule-unicast-per-neighbor-rpl-ns.c index 7ede96184ac..f1c0884af1e 100644 --- a/os/services/orchestra/orchestra-rule-unicast-per-neighbor-rpl-ns.c +++ b/os/services/orchestra/orchestra-rule-unicast-per-neighbor-rpl-ns.c @@ -91,7 +91,7 @@ remove_uc_link(const linkaddr_t *linkaddr) { if(linkaddr != NULL) { uint16_t timeslot = get_node_timeslot(linkaddr); - tsch_schedule_remove_link_by_timeslot(sf_unicast, timeslot, 0); + tsch_schedule_remove_link_by_offsets(sf_unicast, timeslot, 0); tsch_queue_free_packets_to(linkaddr); } }