From 85737a04367063cef4c425cccf70c9c4e383b5ea Mon Sep 17 00:00:00 2001 From: "Martine S. Lenders" Date: Fri, 10 Jan 2020 18:13:58 +0100 Subject: [PATCH] gnrc_netif: remove misleading comment The comment exists since the introduction of the [original implementation], but its meaning is unclear and misleading, as the code doesn't do anything with link-local. [original implementation]: https://github.com/RIOT-OS/RIOT/pull/3561 --- sys/net/gnrc/netif/gnrc_netif.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/net/gnrc/netif/gnrc_netif.c b/sys/net/gnrc/netif/gnrc_netif.c index 0c66105949..718af5a74e 100644 --- a/sys/net/gnrc/netif/gnrc_netif.c +++ b/sys/net/gnrc/netif/gnrc_netif.c @@ -1060,7 +1060,6 @@ static ipv6_addr_t *_src_addr_selection(gnrc_netif_t *netif, return ptr; } /* Rule 2: Prefer appropriate scope. */ - /* both link local */ uint8_t candidate_scope = _get_scope(ptr); if (candidate_scope == dst_scope) { DEBUG("winner for rule 2 (same scope) found\n");