diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2012-08-21 13:55:08 +0300 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2012-08-22 09:01:47 +0300 |
commit | 87759fe8b975744b3b5c49bcf938bc2809e0160f (patch) | |
tree | 1ad54575a6d5cd7ebb48925dd2b299e680cea7c4 /plugins/wifi.c | |
parent | 83f6a153b4304ad2fd5dd941e4fd58006b5a1347 (diff) | |
download | connman-87759fe8b975744b3b5c49bcf938bc2809e0160f.tar.gz connman-87759fe8b975744b3b5c49bcf938bc2809e0160f.tar.bz2 connman-87759fe8b975744b3b5c49bcf938bc2809e0160f.zip |
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.
Diffstat (limited to 'plugins/wifi.c')
-rw-r--r-- | plugins/wifi.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/wifi.c b/plugins/wifi.c index 6329bf37..13c4d0fb 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); |