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/core | |
parent | 98be1a746ac0d7a17e69ccb05936a4d6b3223e97 (diff) |
machinectl: show /etc/os-release information of container in status output
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 1ea646334b..88d094e8cc 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -2023,7 +2023,7 @@ int exec_context_load_environment(const ExecContext *c, char ***l) { return -EINVAL; } for (n = 0; n < count; n++) { - k = load_env_file(pglob.gl_pathv[n], NULL, &p); + k = load_env_file(NULL, pglob.gl_pathv[n], NULL, &p); if (k < 0) { if (ignore) continue; |