pf: fix !INET or !INET6 builds

Fixes:	pfr_match_addr8a42005d1e4
This commit is contained in:
Gleb Smirnoff 2022-03-16 12:52:07 -07:00
parent 2983ec0a87
commit a693d17b99

View File

@ -3855,6 +3855,7 @@ pf_test_eth_rule(int dir, struct pfi_kkif *kif, struct mbuf **m0)
proto = ntohs(e->ether_type);
switch (proto) {
#ifdef INET
case ETHERTYPE_IP: {
struct ip *ip;
m = m_pullup(m, sizeof(struct ether_header) +
@ -3869,6 +3870,8 @@ pf_test_eth_rule(int dir, struct pfi_kkif *kif, struct mbuf **m0)
dst = (struct pf_addr *)&ip->ip_dst;
break;
}
#endif /* INET */
#ifdef INET6
case ETHERTYPE_IPV6: {
struct ip6_hdr *ip6;
m = m_pullup(m, sizeof(struct ether_header) +
@ -3883,6 +3886,7 @@ pf_test_eth_rule(int dir, struct pfi_kkif *kif, struct mbuf **m0)
dst = (struct pf_addr *)&ip6->ip6_dst;
break;
}
#endif /* INET6 */
}
e = mtod(m, struct ether_header *);
*m0 = m;