summaryrefslogtreecommitdiffstats
path: root/src/shared/exec-util.c
diff options
context:
space:
mode:
authorMike Yuan <me@yhndnzj.com>2023-11-23 11:09:27 +0100
committerLuca Boccassi <luca.boccassi@gmail.com>2023-11-23 12:39:07 +0100
commit0f9267501b13539ea1a780e4324986fa24cccb25 (patch)
treeaa4d34d5c75c43294a7548c497e244bd5dd33351 /src/shared/exec-util.c
parentmeson: always install network example files (diff)
downloadsystemd-0f9267501b13539ea1a780e4324986fa24cccb25.tar.xz
systemd-0f9267501b13539ea1a780e4324986fa24cccb25.zip
exec-util: don't say sd-executor to avoid ambiguity
We have a systemd-executor binary now.
Diffstat (limited to 'src/shared/exec-util.c')
-rw-r--r--src/shared/exec-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/exec-util.c b/src/shared/exec-util.c
index 852b3c0e3d..c27f3a54c1 100644
--- a/src/shared/exec-util.c
+++ b/src/shared/exec-util.c
@@ -250,7 +250,7 @@ int execute_strv(
* them to finish. Optionally a timeout is applied. If a file with the same name
* exists in more than one directory, the earliest one wins. */
- r = safe_fork("(sd-executor)", FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGTERM|FORK_LOG, &executor_pid);
+ r = safe_fork("(sd-exec-strv)", FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGTERM|FORK_LOG, &executor_pid);
if (r < 0)
return r;
if (r == 0) {
@@ -258,7 +258,7 @@ int execute_strv(
_exit(r < 0 ? EXIT_FAILURE : r);
}
- r = wait_for_terminate_and_check("(sd-executor)", executor_pid, 0);
+ r = wait_for_terminate_and_check("(sd-exec-strv)", executor_pid, 0);
if (r < 0)
return r;
if (!FLAGS_SET(flags, EXEC_DIR_IGNORE_ERRORS) && r > 0)