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

Merge pull request #11622 from miri64/gnrc_ipv6_ext/fix/nettype

gnrc_ipv6_ext: fix packet snip type for header build function
This commit is contained in:
Hauke Petersen 2019-06-04 15:33:46 +02:00 committed by GitHub
commit 7c369e9fb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -295,7 +295,7 @@ gnrc_pktsnip_t *gnrc_ipv6_ext_build(gnrc_pktsnip_t *ipv6, gnrc_pktsnip_t *next,
}
}
snip = gnrc_pktbuf_add(next, NULL, size, GNRC_NETTYPE_IPV6);
snip = gnrc_pktbuf_add(next, NULL, size, GNRC_NETTYPE_IPV6_EXT);
if (snip == NULL) {
return NULL;