From 87759fe8b975744b3b5c49bcf938bc2809e0160f Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Tue, 21 Aug 2012 13:55:08 +0300 Subject: [PATCH] wifi: Always Scan hidden APs We should scan hidden AP even if the AP is not marked as autoconnectable so that the user is able to connect to it manually. --- plugins/wifi.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/plugins/wifi.c b/plugins/wifi.c index 6329bf3..13c4d0f 100644 --- a/plugins/wifi.c +++ b/plugins/wifi.c @@ -376,13 +376,6 @@ static int get_hidden_connections(int max_ssids, continue; } - value = g_key_file_get_boolean(keyfile, - services[i], "AutoConnect", NULL); - if (value == FALSE) { - g_key_file_free(keyfile); - continue; - } - ssid = g_key_file_get_string(keyfile, services[i], "SSID", NULL); -- 2.7.4