summaryrefslogtreecommitdiffstats
path: root/sys/dev/wpi
diff options
context:
space:
mode:
authorsam <sam@FreeBSD.org>2008-03-12 20:03:31 +0000
committersam <sam@FreeBSD.org>2008-03-12 20:03:31 +0000
commite26ea00cf08638d5e9306a5e742ec21ab5373397 (patch)
tree0009a1c8a672d940e860c3911fcafc12fbd12aa0 /sys/dev/wpi
parente27789519d6d8592e65cd9fd2ec6e629e47a0f87 (diff)
downloadFreeBSD-src-e26ea00cf08638d5e9306a5e742ec21ab5373397.zip
FreeBSD-src-e26ea00cf08638d5e9306a5e742ec21ab5373397.tar.gz
fix inverted test that disabled ACK's on xmit
Diffstat (limited to 'sys/dev/wpi')
-rw-r--r--sys/dev/wpi/if_wpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/wpi/if_wpi.c b/sys/dev/wpi/if_wpi.c
index c4977d2..7df317b 100644
--- a/sys/dev/wpi/if_wpi.c
+++ b/sys/dev/wpi/if_wpi.c
@@ -1857,7 +1857,7 @@ wpi_tx_data(struct wpi_softc *sc, struct mbuf *m0, struct ieee80211_node *ni,
tx->id = ismcast ? WPI_ID_BROADCAST : WPI_ID_BSS;
tx->len = htole16(m0->m_pkthdr.len);
- if (ismcast) {
+ if (!ismcast) {
if ((ni->ni_flags & IEEE80211_NODE_QOS) == 0 ||
!cap->cap_wmeParams[ac].wmep_noackPolicy)
tx->flags |= htole32(WPI_TX_NEED_ACK);
OpenPOWER on IntegriCloud