mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-06 12:38:10 +02:00
clients: fix string list setter
Fixes:5d3736ac65https://bugzilla.redhat.com/show_bug.cgi?id=1671200 (cherry picked from commita68b1827ec)
This commit is contained in:
parent
542e340f01
commit
bc83a5035b
1 changed files with 1 additions and 1 deletions
|
|
@ -2190,7 +2190,7 @@ _get_fcn_802_1x_phase2_private_key (ARGS_GET_FCN)
|
||||||
strv = nm_utils_strsplit_set (value, " \t,", FALSE); \
|
strv = nm_utils_strsplit_set (value, " \t,", FALSE); \
|
||||||
if (strv) { \
|
if (strv) { \
|
||||||
for (i = 0; strv[i]; i++) \
|
for (i = 0; strv[i]; i++) \
|
||||||
set_func (NM_SETTING_802_1X (setting), strv[i++]); \
|
set_func (NM_SETTING_802_1X (setting), strv[i]); \
|
||||||
} \
|
} \
|
||||||
return TRUE; \
|
return TRUE; \
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue