| 628 | scan->tdma = frm; |
| 629 | #endif |
| 630 | else if (vap->iv_flags_ht & IEEE80211_FHT_HTCOMPAT) { |
| 631 | /* |
| 632 | * Accept pre-draft HT ie's if the |
| 633 | * standard ones have not been seen. |
| 634 | */ |
| 635 | if (ishtcapoui(frm)) { |
| 636 | if (scan->htcap == NULL) |
| 637 | scan->htcap = frm; |
| 638 | } else if (ishtinfooui(frm)) { |
| 639 | if (scan->htinfo == NULL) |
| 640 | scan->htcap = frm; |
| 641 | } |
| 642 | } |
| 643 | break; |
| 644 | default: |
| 645 | IEEE80211_DISCARD_IE(vap, IEEE80211_MSG_ELEMID, |
nothing calls this directly
no test coverage detected