diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-05-31 20:58:26 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-05-31 20:58:26 +0000 |
commit | ed41dbb449d7a54f1617d4a36dc7d4262d17b07c (patch) | |
tree | 8e2fd77f93977be0cbb9bbdbad6db317a473b5ae /sys/net/if_bridge.c | |
parent | 0b3d1e487f4f5f70f8d50b779b08133683e27ae2 (diff) |
respect rmx_mtu (cached PMTUD result) on outbound. deraadt/angelos ok
Diffstat (limited to 'sys/net/if_bridge.c')
-rw-r--r-- | sys/net/if_bridge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c index 5cce4c7fcce..b68433c30f1 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.89 2002/05/28 15:46:24 jasoni Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.90 2002/05/31 20:58:25 itojun Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -2368,7 +2368,7 @@ bridge_fragment(struct bridge_softc *sc, struct ifnet *ifp, if (ip->ip_off & IP_DF) goto dropit; - error = ip_fragment(m, ifp); + error = ip_fragment(m, ifp, ifp->if_mtu); if (error == EMSGSIZE) goto dropit; |