mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 20:00:09 +01:00
wifi: Allow 63 byte long PSK (Patch from Robert Piasek).
This commit is contained in:
parent
b1ccf86b87
commit
f216af1e5d
1 changed files with 1 additions and 1 deletions
|
|
@ -609,7 +609,7 @@ nm_supplicant_config_add_setting_wireless_security (NMSupplicantConfig *self,
|
|||
nm_warning ("Error adding 'psk' to supplicant config.");
|
||||
return FALSE;
|
||||
}
|
||||
} else if (psk_len >= 8 && psk_len < 63) {
|
||||
} else if (psk_len >= 8 && psk_len <= 63) {
|
||||
/* Use TYPE_STRING here so that it gets pushed to the
|
||||
* supplicant as a string, and therefore gets quoted,
|
||||
* and therefore the supplicant will interpret it as a
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue