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

Merge pull request #876 from OlegHahm/iphc_decompression_shift

net: 6lowpan: added missing hdr position shift
This commit is contained in:
Martine Lenders 2014-03-24 15:36:44 +01:00
commit ddebe8ed1a

View File

@ -1435,6 +1435,7 @@ void lowpan_iphc_decoding(uint8_t *data, uint8_t length, net_if_eui64_t *s_addr,
default: {
memcpy(&(ipv6_buf->destaddr.uint8[0]), &ipv6_hdr_fields[hdr_pos], 16);
hdr_pos += 16;
break;
}
}