mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Fixes when a packet is not for me, but an interface is defined.
This commit is contained in:
parent
920f49c268
commit
cd80cc166e
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user