From a96a316731f4728cc42e119b43e938de1a6514f0 Mon Sep 17 00:00:00 2001 From: Patrik Flykt Date: Fri, 15 Jun 2012 14:13:52 +0300 Subject: [PATCH] wifi: Do a hidden WiFi network scan also for user scans Rename the callback function since it's not used only for autoscan. --- plugins/wifi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/wifi.c b/plugins/wifi.c index f9ca1b5..205fb95 100644 --- a/plugins/wifi.c +++ b/plugins/wifi.c @@ -454,7 +454,7 @@ static void scan_callback(int result, GSupplicantInterface *interface, connman_device_unref(device); } -static void autoscan_scan_callback(int result, +static void scan_callback_hidden(int result, GSupplicantInterface *interface, void *user_data) { struct connman_device *device = user_data; @@ -514,7 +514,7 @@ static gboolean autoscan_timeout(gpointer data) if (autoscan->interval >= autoscan->limit) interval = autoscan->limit; - throw_wifi_scan(wifi->device, autoscan_scan_callback); + throw_wifi_scan(wifi->device, scan_callback_hidden); set_interval: DBG("interval %d", interval); @@ -809,7 +809,7 @@ static int wifi_scan(struct connman_device *device) { reset_autoscan(device); - return throw_wifi_scan(device, scan_callback); + return throw_wifi_scan(device, scan_callback_hidden); } static int wifi_scan_fast(struct connman_device *device) -- 2.7.4