summaryrefslogtreecommitdiff
path: root/src/core/execute.c
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2016-09-07 06:44:06 +0300
committerGitHub <noreply@github.com>2016-09-07 06:44:06 +0300
commitc5d5fc91eba8541a3a86ff6b839a2b6e824f4149 (patch)
tree5ac8a407c10f16e024b07a92a1d14f89b43244c5 /src/core/execute.c
parent29272d9e03b85deafe30ff79aa291afe7cceb430 (diff)
parentfd74fa791f95433ac52520764b67e6fb4bda2c0e (diff)
Merge pull request #4087 from fsateler/detect-seccomp-filter
seccomp: also detect if seccomp filtering is available
Diffstat (limited to 'src/core/execute.c')
-rw-r--r--src/core/execute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/execute.c b/src/core/execute.c
index 55f15d7e49..2026137721 100644
--- a/src/core/execute.c
+++ b/src/core/execute.c
@@ -1077,7 +1077,7 @@ static void rename_process_from_path(const char *path) {
static bool skip_seccomp_unavailable(const Unit* u, const char* msg) {
if (!is_seccomp_available()) {
log_open();
- log_unit_debug(u, "SECCOMP not detected in the kernel, skipping %s", msg);
+ log_unit_debug(u, "SECCOMP features not detected in the kernel, skipping %s", msg);
log_close();
return true;
}