aboutsummaryrefslogtreecommitdiff
path: root/src/Program.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-04-01 13:52:57 +0200
committerdec05eba <dec05eba@protonmail.com>2023-04-01 13:52:57 +0200
commit4943f3d29c513f6d1e283cfffc30b78d9728902b (patch)
tree1e4c8c5e2246ce9a8908583e4486c8d8ac2b45db /src/Program.cpp
parent30c93d5de455c494c7be3a37571cfcd9688560fe (diff)
4chan: fix link in quote
Diffstat (limited to 'src/Program.cpp')
-rw-r--r--src/Program.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Program.cpp b/src/Program.cpp
index 5e54971..0929a34 100644
--- a/src/Program.cpp
+++ b/src/Program.cpp
@@ -441,7 +441,7 @@ int exec_program_async(const char **args, pid_t *result_process_id) {
setsid();
signal(SIGHUP, SIG_IGN);
- // Daemonize child to make the parent the init process which will reap the zombie child
+ // Daemonize child to make the init process the parent which will reap the zombie child
pid_t second_child = vfork();
if(second_child == 0) { // child
execvp(args[0], (char* const*)args);