mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 14:00:15 +01:00
Log driver scan capabilities
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3232 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
f9d6d60e4c
commit
4723a622cd
1 changed files with 9 additions and 1 deletions
|
|
@ -451,8 +451,16 @@ constructor (GType type,
|
|||
* to the custom structure.
|
||||
*/
|
||||
scan_capa_range = (struct iw_range_with_scan_capa *) ⦥
|
||||
if (scan_capa_range->scan_capa & NM_IW_SCAN_CAPA_ESSID)
|
||||
if (scan_capa_range->scan_capa & NM_IW_SCAN_CAPA_ESSID) {
|
||||
priv->has_scan_capa_ssid = TRUE;
|
||||
nm_info ("%s: driver supports SSID scans (scan_capa 0x%02X).",
|
||||
nm_device_get_iface (NM_DEVICE (self)),
|
||||
scan_capa_range->scan_capa);
|
||||
} else {
|
||||
nm_info ("%s: driver does not support SSID scans (scan_capa 0x%02X).",
|
||||
nm_device_get_iface (NM_DEVICE (self)),
|
||||
scan_capa_range->scan_capa);
|
||||
}
|
||||
|
||||
/* 802.11 wireless-specific capabilities */
|
||||
priv->capabilities = get_wireless_capabilities (self, &range, wrq.u.data.length);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue