From: Andriy Tkachuk Date: Tue, 17 Feb 2009 08:17:24 +0000 (+0200) Subject: WPS: support registration with APs in WEP security mode X-Git-Tag: hostap_0_7_0~511 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0632542b8b640d04780af6ca4c154f520d8214d5;p=thirdparty%2Fhostap.git WPS: support registration with APs in WEP security mode Attached patch fixes the issue when supplicant does not select APs in WEP security mode for WPS registration. --- diff --git a/wpa_supplicant/events.c b/wpa_supplicant/events.c index 703106c5d..cd5928ebb 100644 --- a/wpa_supplicant/events.c +++ b/wpa_supplicant/events.c @@ -252,6 +252,11 @@ static int wpa_supplicant_match_privacy(struct wpa_scan_res *bss, if (ssid->mixed_cell) return 1; +#ifdef CONFIG_WPS + if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) + return 1; +#endif /* CONFIG_WPS */ + for (i = 0; i < NUM_WEP_KEYS; i++) { if (ssid->wep_key_len[i]) { privacy = 1;