diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-02-14 14:11:24 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-02-14 14:12:19 -0500 |
commit | ca905b2fce3831c48dcf10e7ada58282504dc988 (patch) | |
tree | 66f6ae4d27ec69edd43c1f8ab029f5d1c012b786 /src | |
parent | e28569311f5385cde76e4b84adbec6609b451cf9 (diff) |
core: make RuntimeDirectory honor SELinux labels
https://bugzilla.redhat.com/show_bug.cgi?id=1192726
Diffstat (limited to 'src')
-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 2c23db0901..1815e3de2d 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1524,7 +1524,7 @@ static int exec_child( return -ENOMEM; } - r = mkdir_safe(p, context->runtime_directory_mode, uid, gid); + r = mkdir_safe_label(p, context->runtime_directory_mode, uid, gid); if (r < 0) { *exit_status = EXIT_RUNTIME_DIRECTORY; return r; |