mirror of
https://github.com/systemd/systemd.git
synced 2026-08-03 14:40:31 +00:00
tree-wide: pass return value of make_null_stdio() to warning instead of errno (#4328)
as @poettering suggested in the #4320
This commit is contained in:
@@ -1532,8 +1532,9 @@ int main(int argc, char *argv[]) {
|
||||
* need to do that for user instances since they never log
|
||||
* into the console. */
|
||||
log_show_color(colors_enabled());
|
||||
if (make_null_stdio() < 0)
|
||||
log_warning_errno(errno, "Failed to redirect standard streams to /dev/null: %m");
|
||||
r = make_null_stdio();
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to redirect standard streams to /dev/null: %m");
|
||||
}
|
||||
|
||||
r = initialize_join_controllers();
|
||||
|
||||
@@ -1738,9 +1738,12 @@ int main(int argc, char *argv[]) {
|
||||
log_info("starting version " VERSION);
|
||||
|
||||
/* connect /dev/null to stdin, stdout, stderr */
|
||||
if (log_get_max_level() < LOG_DEBUG)
|
||||
if (make_null_stdio() < 0)
|
||||
log_warning_errno(errno, "Failed to redirect standard streams to /dev/null: %m");
|
||||
if (log_get_max_level() < LOG_DEBUG) {
|
||||
r = make_null_stdio();
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to redirect standard streams to /dev/null: %m");
|
||||
}
|
||||
|
||||
|
||||
|
||||
pid = fork();
|
||||
|
||||
Reference in New Issue
Block a user