mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-21 18:08:29 +02:00
keyfile: allow "," as unmanaged-devices separator
Only using ";" (the GKeyFile default) often confuses people.
This commit is contained in:
parent
68653de291
commit
76ac21b26d
1 changed files with 1 additions and 1 deletions
|
|
@ -495,7 +495,7 @@ get_unmanaged_specs (NMSystemConfigInterface *config)
|
|||
char **udis;
|
||||
int i;
|
||||
|
||||
udis = g_strsplit (str, ";", -1);
|
||||
udis = g_strsplit_set (str, ";,", -1);
|
||||
g_free (str);
|
||||
|
||||
for (i = 0; udis[i] != NULL; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue