aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if_vlan.c
diff options
context:
space:
mode:
authorKip Macy <kmacy@FreeBSD.org>2008-11-22 07:35:45 +0000
committerKip Macy <kmacy@FreeBSD.org>2008-11-22 07:35:45 +0000
commitaea78d20949f600b901eaee93cadf8297d284dfd (patch)
tree7d39801888876e0d7568cc61b7aee682c91b176b /sys/net/if_vlan.c
parentff8c51cf3ed2797961af74fd1cee299dfca13708 (diff)
Notes
Diffstat (limited to 'sys/net/if_vlan.c')
-rw-r--r--sys/net/if_vlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c
index af164e3e82e1..586fefdc2ea3 100644
--- a/sys/net/if_vlan.c
+++ b/sys/net/if_vlan.c
@@ -868,7 +868,7 @@ vlan_start(struct ifnet *ifp)
* Send it, precisely as ether_output() would have.
* We are already running at splimp.
*/
- IFQ_HANDOFF(p, m, error);
+ error = (p->if_transmit)(p, m);
if (!error)
ifp->if_opackets++;
else