Fix an obvious parameter-order bogon. (Don't know what happened to

the warning message before.)
This commit is contained in:
wollman 1998-05-15 20:02:47 +00:00
parent 16f8d7d58c
commit be2e5ffcfc

View File

@ -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);