1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-26 08:55:18 +03:00

process-util: show requested process name in the log

This is useful for debugging issues like #26474.

(cherry picked from commit b9fadf2e2c)
This commit is contained in:
Yu Watanabe 2023-02-19 01:26:39 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent 5140da8937
commit ba1cb4156b

View File

@ -1185,7 +1185,7 @@ int safe_fork_full(
else
pid = fork();
if (pid < 0)
return log_full_errno(prio, errno, "Failed to fork: %m");
return log_full_errno(prio, errno, "Failed to fork off '%s': %m", strna(name));
if (pid > 0) {
/* We are in the parent process */