1
0
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:
Fabian Brandt 2014-10-10 17:17:40 +02:00
parent 920f49c268
commit cd80cc166e

View File

@ -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;
}