X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flocale%2Flocaled.c;fp=src%2Flocale%2Flocaled.c;h=9377ce5015eeaf3d3b8beabcf5e3b2edc4f23df9;hp=552ffdf87a60c479ad2e8ef4c02f199c58da0550;hb=f88e6be5ee31ff0e45fabcdedaf26d3be0d4817a;hpb=27e9c5af817147ea1c678769e45e83f2e4b4ae96 diff --git a/src/locale/localed.c b/src/locale/localed.c index 552ffdf87..9377ce501 100644 --- a/src/locale/localed.c +++ b/src/locale/localed.c @@ -224,7 +224,7 @@ static int x11_read_data(Context *c) { if (in_section && first_word(l, "Option")) { _cleanup_strv_free_ char **a = NULL; - r = strv_split_quoted(&a, l); + r = strv_split_quoted(&a, l, false); if (r < 0) return r; @@ -247,7 +247,7 @@ static int x11_read_data(Context *c) { } else if (!in_section && first_word(l, "Section")) { _cleanup_strv_free_ char **a = NULL; - r = strv_split_quoted(&a, l); + r = strv_split_quoted(&a, l, false); if (r < 0) return -ENOMEM; @@ -533,7 +533,7 @@ static int read_next_mapping(FILE *f, unsigned *n, char ***a) { if (l[0] == 0 || l[0] == '#') continue; - r = strv_split_quoted(&b, l); + r = strv_split_quoted(&b, l, false); if (r < 0) return r;