nl80211: Use correct attribute for scan flags in vendor scan
This fixes the netlink attribute identifier for the scan flags when using QCA_NL80211_VENDOR_SUBCMD_TRIGGER_SCAN. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
c167662d73
commit
39c5da3284
1 changed files with 1 additions and 1 deletions
|
@ -1096,7 +1096,7 @@ int wpa_driver_nl80211_vendor_scan(struct i802_bss *bss,
|
|||
}
|
||||
|
||||
if (scan_flags &&
|
||||
nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, scan_flags))
|
||||
nla_put_u32(msg, QCA_WLAN_VENDOR_ATTR_SCAN_FLAGS, scan_flags))
|
||||
goto fail;
|
||||
|
||||
if (params->p2p_probe) {
|
||||
|
|
Loading…
Reference in a new issue