Fix unused variable error with !INET6

Reported by:	Artem Naluzhny, Frank Terhaar-Yonkers
This commit is contained in:
Andrew Thompson 2007-05-15 18:30:48 +00:00
parent 7d3b4a0846
commit e2a77bb8b7

View File

@ -1199,7 +1199,7 @@ uint32_t
lagg_hashmbuf(struct mbuf *m, uint32_t key)
{
uint16_t etype;
uint32_t flow, p = 0;
uint32_t p = 0;
int off;
struct ether_header *eh;
struct ether_vlan_header vlanbuf;
@ -1211,6 +1211,7 @@ lagg_hashmbuf(struct mbuf *m, uint32_t key)
#ifdef INET6
const struct ip6_hdr *ip6;
struct ip6_hdr ip6buf;
uint32_t flow;
#endif
off = sizeof(*eh);