diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2001-06-28 21:53:43 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2001-06-28 21:53:43 +0000 |
commit | e64fc6bb94eb65581578538e1f33048caa9abcb4 (patch) | |
tree | e291519aa8271b2f11fc5131a74ddcdbb5cbd0f7 /sys/net/if_bridge.c | |
parent | 332e5291ec2d1b50efabc37a669246745e918db6 (diff) |
first stab at packet normalization. includes full ip reassembly.
okay dhartmei@, dugsong@
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 17f30c39931..d97f8c9e792 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.69 2001/06/27 06:26:43 angelos Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.70 2001/06/28 21:53:42 provos Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -1984,7 +1984,7 @@ bridge_filter(sc, ifp, eh, m) } /* Finally, we get to filter the packet! */ - if (pf_test(PF_IN, m->m_pkthdr.rcvif, m) != PF_PASS) + if (pf_test(PF_IN, m->m_pkthdr.rcvif, &m) != PF_PASS) goto dropit; /* Rebuild the IP header */ |