mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
fixes a typo that value should be 0 not 10.
This commit is contained in:
parent
ca1d2f657a
commit
35e8cd5f52
1 changed files with 1 additions and 1 deletions
|
|
@ -1688,7 +1688,7 @@ urtw_tx_start(struct urtw_softc *sc, struct ieee80211_node *ni, struct mbuf *m0,
|
|||
ieee80211_radiotap_tx(vap, m0);
|
||||
}
|
||||
|
||||
if ((wh->i_fc[10] & IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_MGT ||
|
||||
if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_MGT ||
|
||||
(wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_CTL) {
|
||||
tp = &vap->iv_txparms[ieee80211_chan2mode(ic->ic_curchan)];
|
||||
rate = tp->mgmtrate;
|
||||
|
|
|
|||
Loading…
Reference in a new issue