From ddfa5101a2e0d94571c10e2bbc7c38b60dc6cba1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 21 Aug 2012 23:07:21 +0200 Subject: [PATCH] main: fix PR_SET_CHILD_SUBREAPER warning version --- src/core/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?)"); } } -- 2.30.2