summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/extra/ipv6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extra/ipv6.c b/src/extra/ipv6.c
index af307d6..f685b3b 100644
--- a/src/extra/ipv6.c
+++ b/src/extra/ipv6.c
@@ -45,7 +45,7 @@ struct ip6_hdr *nfq_ip6_get_hdr(struct pkt_buff *pktb)
ip6h = (struct ip6_hdr *)pktb->network_header;
/* Not IPv6 packet. */
- if (ip6h->ip6_flow != 0x60)
+ if ((*(uint8_t *)ip6h & 0xf0) != 0x60)
return NULL;
return ip6h;