mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 18:40:16 +01:00
Add some debug prints
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1255 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
429dd2f394
commit
21446d1fa6
1 changed files with 14 additions and 0 deletions
14
src/wpa.c
14
src/wpa.c
|
|
@ -454,6 +454,20 @@ wpa_ie_data * wpa_parse_wpa_ie(const u8 *wpa_ie, size_t wpa_ie_len)
|
|||
data = NULL;
|
||||
}
|
||||
|
||||
#if 0
|
||||
if (data)
|
||||
{
|
||||
nm_debug ("WPA IE: -------------------");
|
||||
nm_debug (" proto 0x%X", data->proto);
|
||||
nm_debug (" pw cipher 0x%X", data->pairwise_cipher);
|
||||
nm_debug (" gr cipher 0x%X", data->group_cipher);
|
||||
nm_debug (" key mgmt 0x%X", data->key_mgmt);
|
||||
nm_debug (" capabilities 0x%X", data->capabilities);
|
||||
nm_debug (" # pmkid 0x%X", data->num_pmkid);
|
||||
nm_debug ("");
|
||||
}
|
||||
#endif
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue