Skip to content

Commit d5f4b8e

Browse files
authored
Fix function spelling mistake in Thread
lowpan_contex_get_by_id -> lowpan_context_get_by_id
1 parent 922452d commit d5f4b8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_router_bootstrap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1398,7 +1398,7 @@ static void thread_address_registration_tlv_parse(uint8_t *ptr, uint16_t data_le
13981398
ctxId = *ptr++;
13991399
if (ctxId & 0x80) {
14001400
ctxId &= 0x0f;
1401-
ctx = lowpan_contex_get_by_id(&cur->lowpan_contexts, ctxId);
1401+
ctx = lowpan_context_get_by_id(&cur->lowpan_contexts, ctxId);
14021402
if (ctx) {
14031403
memcpy(tempIPv6Address, ctx->prefix, 8);
14041404
memcpy(&tempIPv6Address[8], ptr, 8);

0 commit comments

Comments
 (0)