summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-08-21 23:07:21 +0200
committerLennart Poettering <lennart@poettering.net>2012-08-21 23:07:21 +0200
commitddfa5101a2e0d94571c10e2bbc7c38b60dc6cba1 (patch)
treea32ab9ba2115eeb8bcabdc79f64b576e1b740955
parentc0ca7aeec963207b6fa5ee39bd204cb26cba4023 (diff)
main: fix PR_SET_CHILD_SUBREAPER warning version
-rw-r--r--src/core/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c
index 6e8f21a29..b50a1ca21 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -1512,7 +1512,7 @@ int main(int argc, char *argv[]) {
if (prctl(PR_SET_CHILD_SUBREAPER, 1) < 0) {
log_warning("Failed to make us a subreaper: %m");
if (errno == EINVAL)
- log_info("Perhaps the kernel version is too old (< 3.3?)");
+ log_info("Perhaps the kernel version is too old (< 3.4?)");
}
}