diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-07-03 17:50:55 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-07-03 17:54:24 +0200 |
commit | 717603e391b52983ca1fd218e7333a1b9dfc5c05 (patch) | |
tree | 1a4da5a932aeaa9da207d46e4f71b8bc566e2c27 /src/locale/localed.c | |
parent | 98be1a746ac0d7a17e69ccb05936a4d6b3223e97 (diff) | |
download | systemd-717603e391b52983ca1fd218e7333a1b9dfc5c05.tar.gz |
machinectl: show /etc/os-release information of container in status output
Diffstat (limited to 'src/locale/localed.c')
-rw-r--r-- | src/locale/localed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/locale/localed.c b/src/locale/localed.c index 358f6c200e..23da149b0e 100644 --- a/src/locale/localed.c +++ b/src/locale/localed.c @@ -288,7 +288,7 @@ static int locale_write_data(Context *c) { int r, p; char **l = NULL; - r = load_env_file("/etc/locale.conf", NULL, &l); + r = load_env_file(NULL, "/etc/locale.conf", NULL, &l); if (r < 0 && r != -ENOENT) return r; @@ -393,7 +393,7 @@ static int vconsole_write_data(Context *c) { int r; _cleanup_strv_free_ char **l = NULL; - r = load_env_file("/etc/vconsole.conf", NULL, &l); + r = load_env_file(NULL, "/etc/vconsole.conf", NULL, &l); if (r < 0 && r != -ENOENT) return r; |