tini.c: fix child subreaper error message

When `TINI_MINIMAL` was defined, the error message read "To fix the problem, or set the environment [...]".
This commit is contained in:
knilch 2019-11-28 16:36:32 +01:00 committed by GitHub
parent 3c5368682e
commit 76d4aa0271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -122,9 +122,9 @@ Zombie processes will not be re-parented to Tini, so zombie reaping won't work.\
To fix the problem, "
#if HAS_SUBREAPER
#ifndef TINI_MINIMAL
"use the -s option "
"use the -s option or "
#endif
"or set the environment variable " SUBREAPER_ENV_VAR " to register Tini as a child subreaper, or "
"set the environment variable " SUBREAPER_ENV_VAR " to register Tini as a child subreaper, or "
#endif
"run Tini as PID 1.";