Parcourir la source

nl80211: Fix key configuration in wpa_supplicant AP mode

Jouni Malinen il y a 15 ans
Parent
commit
de12717a56
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      src/drivers/driver_nl80211.c

+ 4 - 1
src/drivers/driver_nl80211.c

@@ -2072,9 +2072,12 @@ static int wpa_driver_nl80211_set_key(const char *ifname, void *priv,
 	 */
 	if (ret || !set_tx || alg == WPA_ALG_NONE)
 		return ret;
-#ifdef HOSTAPD /* FIX: is this needed? */
+#ifdef HOSTAPD
 	if (addr)
 		return ret;
+#else /* HOSTAPD */
+	if (drv->nlmode == NL80211_IFTYPE_AP && addr)
+		return ret;
 #endif /* HOSTAPD */
 
 	msg = nlmsg_alloc();