diff options
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; |