mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 19:50:14 +01:00
iwd: handle empty wireless mode as Infrastructure
Blank mode property in the wireless settings is documented in
libnm-core/nm-setting-wireless.c to mean infrastructure mode.
(cherry picked from commit d01ba607a6)
This commit is contained in:
parent
64e4616a3d
commit
78b14312ce
1 changed files with 4 additions and 4 deletions
|
|
@ -545,7 +545,7 @@ check_connection_compatible (NMDevice *device, NMConnection *connection)
|
|||
return FALSE;
|
||||
|
||||
mode = nm_setting_wireless_get_mode (s_wireless);
|
||||
if (g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_INFRA) != 0)
|
||||
if (mode && g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_INFRA) != 0)
|
||||
return FALSE;
|
||||
|
||||
/* 8021x networks can only be used if they've been provisioned on the IWD side and
|
||||
|
|
@ -575,7 +575,7 @@ check_connection_available (NMDevice *device,
|
|||
|
||||
/* Only Infrastrusture mode at this time */
|
||||
mode = nm_setting_wireless_get_mode (s_wifi);
|
||||
if (g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_INFRA) != 0)
|
||||
if (mode && g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_INFRA) != 0)
|
||||
return FALSE;
|
||||
|
||||
/* Hidden SSIDs not supported yet */
|
||||
|
|
@ -630,7 +630,7 @@ complete_connection (NMDevice *device,
|
|||
|
||||
mode = s_wifi ? nm_setting_wireless_get_mode (s_wifi) : NULL;
|
||||
|
||||
if (s_wifi && !nm_streq0 (mode, NM_SETTING_WIRELESS_MODE_INFRA)) {
|
||||
if (mode && !nm_streq0 (mode, NM_SETTING_WIRELESS_MODE_INFRA)) {
|
||||
g_set_error_literal (error,
|
||||
NM_DEVICE_ERROR,
|
||||
NM_DEVICE_ERROR_INVALID_CONNECTION,
|
||||
|
|
@ -806,7 +806,7 @@ can_auto_connect (NMDevice *device,
|
|||
|
||||
/* Only Infrastrusture mode */
|
||||
mode = nm_setting_wireless_get_mode (s_wifi);
|
||||
if (g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_INFRA) != 0)
|
||||
if (mode && g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_INFRA) != 0)
|
||||
return FALSE;
|
||||
|
||||
/* Don't autoconnect to networks that have been tried at least once
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue