Skip to content

Commit

Permalink
config: Set the list separator to be comma
Browse files Browse the repository at this point in the history
The code did not set the list separator so semicolon was used by
default. The documentation in config-format.txt says the list
items are separated by comma.
  • Loading branch information
jukkar authored and pfl committed Oct 11, 2013
1 parent 86c6980 commit 87919ec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/config.c
Expand Up @@ -720,6 +720,8 @@ static int load_config(struct connman_config *config)
if (!keyfile)
return -EIO;

g_key_file_set_list_separator(keyfile, ',');

/* Verify keys validity of the global section */
check_keys(keyfile, "global", config_possible_keys);

Expand Down

0 comments on commit 87919ec

Please sign in to comment.