diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-08-21 23:07:21 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-08-21 23:07:21 +0200 |
commit | ddfa5101a2e0d94571c10e2bbc7c38b60dc6cba1 (patch) | |
tree | a32ab9ba2115eeb8bcabdc79f64b576e1b740955 /src/core/main.c | |
parent | c0ca7aeec963207b6fa5ee39bd204cb26cba4023 (diff) |
main: fix PR_SET_CHILD_SUBREAPER warning version
Diffstat (limited to 'src/core/main.c')
-rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index 6e8f21a290..b50a1ca215 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?)"); } } |