keyfile: allow "," as unmanaged-devices separator

Only using ";" (the GKeyFile default) often confuses people.
This commit is contained in:
Dan Williams
2014-08-15 14:36:28 -05:00
parent 68653de291
commit 76ac21b26d

View File

@@ -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++) {