summaryrefslogtreecommitdiffstats
path: root/sys/net80211/ieee80211_hostap.c
diff options
context:
space:
mode:
authorkmacy <kmacy@FreeBSD.org>2008-11-22 07:35:45 +0000
committerkmacy <kmacy@FreeBSD.org>2008-11-22 07:35:45 +0000
commit2b4df7158b97113f7626cc478468c3f3c3a688c9 (patch)
tree7d39801888876e0d7568cc61b7aee682c91b176b /sys/net80211/ieee80211_hostap.c
parent07d364adf02c9370780cae58faf75152aa132e10 (diff)
downloadFreeBSD-src-2b4df7158b97113f7626cc478468c3f3c3a688c9.zip
FreeBSD-src-2b4df7158b97113f7626cc478468c3f3c3a688c9.tar.gz
convert calls to IFQ_HANDOFF to if_transmit
Diffstat (limited to 'sys/net80211/ieee80211_hostap.c')
-rw-r--r--sys/net80211/ieee80211_hostap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_hostap.c b/sys/net80211/ieee80211_hostap.c
index fbc0305..60cbe4b 100644
--- a/sys/net80211/ieee80211_hostap.c
+++ b/sys/net80211/ieee80211_hostap.c
@@ -355,7 +355,7 @@ hostap_deliver_data(struct ieee80211vap *vap,
if (mcopy != NULL) {
int len, err;
len = mcopy->m_pkthdr.len;
- IFQ_HANDOFF(ifp, mcopy, err);
+ err = (ifp->if_transmit)(ifp, mcopy);
if (err) {
/* NB: IFQ_HANDOFF reclaims mcopy */
} else {
OpenPOWER on IntegriCloud