1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #1796 from RIOT-OS/ip_is_our_fix

Fixes when a packet is not for me, but an interface is defined.
This commit is contained in:
Oleg Hahm 2014-10-10 18:24:18 +02:00
commit d159eafb44

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