mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 18:50:07 +01:00
supplicant: fix wrong check on "EAP" signal arguments
The check is inverted. Fixes:b83f07916a('supplicant: large rework of wpa_supplicant handling') (cherry picked from commit50a400e16f)
This commit is contained in:
parent
cbe5da4fd4
commit
d34d564bb4
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