diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-08-19 19:36:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-19 19:36:09 +0200 |
commit | 16d901e251dc51162bcdda25b4be8eea964ed548 (patch) | |
tree | 4f27de27925aef25440ddf635834ff40e771204c /src/core | |
parent | a457bd26cc8b1a20fdfca39e3f57a079aaf97940 (diff) | |
parent | acf553b04d40ccde8098a2bcdebf8245b212d289 (diff) |
Merge pull request #3987 from keszybz/console-color-setup
Rework console color setup
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/main.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/main.c b/src/core/main.c index c7c6df3447..125cfb28f0 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1505,7 +1505,8 @@ int main(int argc, char *argv[]) { if (getpid() == 1) { /* Don't limit the core dump size, so that coredump handlers such as systemd-coredump (which honour the limit) * will process core dumps for system services by default. */ - (void) setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY)); + if (setrlimit(RLIMIT_CORE, &RLIMIT_MAKE_CONST(RLIM_INFINITY)) < 0) + log_warning_errno(errno, "Failed to set RLIMIT_CORE: %m"); /* But at the same time, turn off the core_pattern logic by default, so that no coredumps are stored * until the systemd-coredump tool is enabled via sysctl. */ @@ -2013,9 +2014,6 @@ finish: log_error_errno(r, "Failed to switch root, trying to continue: %m"); } - /* Reopen the console */ - (void) make_console_stdio(); - args_size = MAX(6, argc+1); args = newa(const char*, args_size); @@ -2063,6 +2061,9 @@ finish: arg_serialization = safe_fclose(arg_serialization); fds = fdset_free(fds); + /* Reopen the console */ + (void) make_console_stdio(); + for (j = 1, i = 1; j < (unsigned) argc; j++) args[i++] = argv[j]; args[i++] = NULL; |