mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
fix inverted test that disabled ACK's on xmit
This commit is contained in:
parent
def2344db6
commit
810df80181
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue