From cd80cc166e5346337f28231f7b427b4c4d0bc822 Mon Sep 17 00:00:00 2001 From: Fabian Brandt Date: Fri, 10 Oct 2014 17:17:40 +0200 Subject: [PATCH] Fixes when a packet is not for me, but an interface is defined. --- sys/net/network_layer/sixlowpan/ip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/net/network_layer/sixlowpan/ip.c b/sys/net/network_layer/sixlowpan/ip.c index e7d2881711..7f080bdbc0 100644 --- a/sys/net/network_layer/sixlowpan/ip.c +++ b/sys/net/network_layer/sixlowpan/ip.c @@ -378,7 +378,7 @@ void *ipv6_process(void *arg) int addr_match = is_our_address(&ipv6_buf->destaddr); /* no address configured for this node so far, exit early */ - if (addr_match < 1) { + if (addr_match < 0) { msg_reply(&m_recv_lowpan, &m_send_lowpan); continue; }