diff options
Diffstat (limited to 'sys/net/bpf.c')
-rw-r--r-- | sys/net/bpf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index a541aaa87ef..bcca3ea28f9 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.c,v 1.126 2015/09/12 20:26:06 mpi Exp $ */ +/* $OpenBSD: bpf.c,v 1.127 2015/09/13 17:53:44 mpi Exp $ */ /* $NetBSD: bpf.c,v 1.33 1997/02/21 23:59:35 thorpej Exp $ */ /* @@ -556,7 +556,7 @@ bpfwrite(dev_t dev, struct uio *uio, int ioflag) dst.ss_family = pseudo_AF_HDRCMPLT; s = splsoftnet(); - error = if_output(ifp, m, (struct sockaddr *)&dst, NULL); + error = ifp->if_output(ifp, m, (struct sockaddr *)&dst, NULL); splx(s); /* * The driver frees the mbuf. |