From: Lennart Poettering Date: Tue, 21 Aug 2012 21:07:21 +0000 (+0200) Subject: main: fix PR_SET_CHILD_SUBREAPER warning version X-Git-Tag: v189~13 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=ddfa5101a2e0d94571c10e2bbc7c38b60dc6cba1 main: fix PR_SET_CHILD_SUBREAPER warning version --- 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?)"); } }