summaryrefslogtreecommitdiff
path: root/src/core/execute.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-07-26 17:53:07 +0200
committerLennart Poettering <lennart@poettering.net>2016-08-04 16:27:07 +0200
commit9c1a61adba1ed61a405bc30675f08b8442eefd70 (patch)
tree3c646807a15ca405bf7599d4e043c795ca06b552 /src/core/execute.h
parentc39f1ce24ddb1aa683991c5099dcc2afbfcbc57c (diff)
core: move masking of chroot/permission masking into service_spawn()
Let's fix up the flags fields in service_spawn() rather than its callers, in order to simplify things a bit.
Diffstat (limited to 'src/core/execute.h')
-rw-r--r--src/core/execute.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/execute.h b/src/core/execute.h
index 77418ea2ad..8d659ca178 100644
--- a/src/core/execute.h
+++ b/src/core/execute.h
@@ -214,7 +214,7 @@ typedef enum ExecFlags {
EXEC_APPLY_CHROOT = 1U << 2,
EXEC_APPLY_TTY_STDIN = 1U << 3,
- /* The following are not usec by execute.c, but by consumers internally */
+ /* The following are not used by execute.c, but by consumers internally */
EXEC_PASS_FDS = 1U << 4,
EXEC_IS_CONTROL = 1U << 5,
} ExecFlags;