aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless
diff options
context:
space:
mode:
authorAndrew Zaborowski <andrew.zaborowski@intel.com>2018-09-24 18:10:22 +0200
committerJohannes Berg <johannes.berg@intel.com>2018-10-02 09:56:30 +0200
commitefdfce7270de85a8706d1ea051bef3a7486809ff (patch)
tree4dbdbe08fa287c771d7a6803dcb3f1cf08d99cf2 /net/wireless
parentmac80211: fix error handling in ieee80211_register_hw() (diff)
downloadlinux-dev-efdfce7270de85a8706d1ea051bef3a7486809ff.tar.xz
linux-dev-efdfce7270de85a8706d1ea051bef3a7486809ff.zip
nl80211: Fix a GET_KEY reply attribute
Use the NL80211_KEY_IDX attribute inside the NL80211_ATTR_KEY in NL80211_CMD_GET_KEY responses to comply with nl80211_key_policy. This is unlikely to affect existing userspace. Signed-off-by: Andrew Zaborowski <andrew.zaborowski@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r--net/wireless/nl80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index 0827cbdbb7b6..90788ebe794e 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -3351,7 +3351,7 @@ static void get_key_callback(void *c, struct key_params *params)
params->cipher)))
goto nla_put_failure;
- if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
+ if (nla_put_u8(cookie->msg, NL80211_KEY_IDX, cookie->idx))
goto nla_put_failure;
nla_nest_end(cookie->msg, key);