diff options
author | mlaier <mlaier@FreeBSD.org> | 2005-05-04 19:51:06 +0000 |
---|---|---|
committer | mlaier <mlaier@FreeBSD.org> | 2005-05-04 19:51:06 +0000 |
commit | 896129e0f9bb8c7304597c8d26b8e45f7dad821b (patch) | |
tree | f25f1ccc2c3cd781b147f14b9830fdf72b3f1f91 /sys/contrib/pf | |
parent | f0bd095e968875b0aaa18bc56fc3fef9a50d8a70 (diff) | |
download | FreeBSD-src-896129e0f9bb8c7304597c8d26b8e45f7dad821b.zip FreeBSD-src-896129e0f9bb8c7304597c8d26b8e45f7dad821b.tar.gz |
if_mtu not ifp_mtu.
Diffstat (limited to 'sys/contrib/pf')
-rw-r--r-- | sys/contrib/pf/net/pf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/contrib/pf/net/pf.c b/sys/contrib/pf/net/pf.c index d7d1c2c..9fb50e3 100644 --- a/sys/contrib/pf/net/pf.c +++ b/sys/contrib/pf/net/pf.c @@ -5790,7 +5790,7 @@ pf_route(struct mbuf **m, struct pf_rule *r, int dir, struct ifnet *oifp, NTOHS(ip->ip_off); PF_UNLOCK(); icmp_error(m0, ICMP_UNREACH, ICMP_UNREACH_NEEDFRAG, 0, - ifp->ifp_mtu); + ifp->if_mtu); PF_LOCK(); #else icmp_error(m0, ICMP_UNREACH, ICMP_UNREACH_NEEDFRAG, 0, |