summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1998-05-15 20:02:47 +0000
committerwollman <wollman@FreeBSD.org>1998-05-15 20:02:47 +0000
commitbe2e5ffcfc349cb4483b536bd57048eca466e0c9 (patch)
treed7388c4ebcc176664cabed629b1c879ffe4d943c
parent16f8d7d58cbb18ff24ea00de6952169c0d565aaa (diff)
downloadFreeBSD-src-be2e5ffcfc349cb4483b536bd57048eca466e0c9.zip
FreeBSD-src-be2e5ffcfc349cb4483b536bd57048eca466e0c9.tar.gz
Fix an obvious parameter-order bogon. (Don't know what happened to
the warning message before.)
-rw-r--r--sys/net/if_vlan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c
index eb28226..b41e7e4 100644
--- a/sys/net/if_vlan.c
+++ b/sys/net/if_vlan.c
@@ -26,7 +26,7 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: if_vlan.c,v 1.1 1998/03/18 01:40:12 wollman Exp $
*/
/*
@@ -139,7 +139,7 @@ vlan_start(struct ifnet *ifp)
break;
#if NBPFILTER > 0
if (ifp->if_bpf)
- bpf_mtap(m, ifp);
+ bpf_mtap(ifp, m);
#endif /* NBPFILTER > 0 */
M_PREPEND(m, EVL_ENCAPLEN, M_DONTWAIT);
OpenPOWER on IntegriCloud