From 36893ded6df8f72c65c3747db74cc9277e691792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= Date: Tue, 6 Jan 2015 09:23:56 +0100 Subject: [PATCH] rpl: typo childs -> children --- sys/net/routing/rpl/rpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/net/routing/rpl/rpl.c b/sys/net/routing/rpl/rpl.c index d566b70cc5..866c213c1c 100644 --- a/sys/net/routing/rpl/rpl.c +++ b/sys/net/routing/rpl/rpl.c @@ -426,7 +426,7 @@ void rpl_add_srh_entry(ipv6_addr_t *child, ipv6_addr_t *parent, uint16_t lifetim /* This maybe a bit confusing since the root also using the standard routing table, but in this case * the code stays cleaner - especially for rt_over_timer from trickle.c. Just keep in mind that * address is now child (unique, iteration variable) and parent is now next_hop. The whole routing table - * transforms to a list of childs and their parents, so that route aggregation can be done properly. + * transforms to a list of children and their parents, so that route aggregation can be done properly. */ DEBUGF("Adding source-routing entry child: %s\n", ipv6_addr_to_str(addr_str, IPV6_MAX_ADDR_STR_LEN, child)); DEBUGF("Adding source-routing entry parent: %s\n", ipv6_addr_to_str(addr_str, IPV6_MAX_ADDR_STR_LEN, parent));