mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 16:20:05 +01:00
supplicant: fix wrong check on "EAP" signal arguments
The check is inverted.
Fixes: b83f07916a ('supplicant: large rework of wpa_supplicant handling')
This commit is contained in:
parent
ce17284c3f
commit
50a400e16f
1 changed files with 1 additions and 1 deletions
|
|
@ -3082,7 +3082,7 @@ _signal_handle(NMSupplicantInterface *self,
|
|||
const char *status;
|
||||
const char *parameter;
|
||||
|
||||
if (g_variant_is_of_type(parameters, G_VARIANT_TYPE("(ss)")))
|
||||
if (!g_variant_is_of_type(parameters, G_VARIANT_TYPE("(ss)")))
|
||||
return;
|
||||
|
||||
g_variant_get(parameters, "(&s&s)", &status, ¶meter);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue