summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Altensen <info@stricted.net>2020-09-08 22:22:59 +0200
committerJan Altensen <info@stricted.net>2020-09-08 22:22:59 +0200
commita7c11d41b9f7e7832ed203592ebd68c4ce8f9a0c (patch)
tree1d3660a876e17462fd8bc986cce415a80b003bab
parent708cf3f0b1e4baf584fa1417285da8021b6427da (diff)
wpa_supplicant_lib: fix assocresp command id
* according to the kernel it is 3 and not 4 Change-Id: I2fb482b2ae36626ecf749e72e230dfdb19d7f37f
-rw-r--r--driver_cmd_nl80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_cmd_nl80211.c b/driver_cmd_nl80211.c
index da84370..849296e 100644
--- a/driver_cmd_nl80211.c
+++ b/driver_cmd_nl80211.c
@@ -162,7 +162,7 @@ int wpa_driver_set_ap_wps_p2p_ie(void *priv, const struct wpabuf *beacon,
} cmd_arr[] = {
{0x1, beacon},
{0x2, proberesp},
- {0x4, assocresp},
+ {0x3, assocresp},
{-1, NULL}
};