Remove comment referencing old source code

Behaviour was changed in f691a55923
next
Jason 2020-03-01 04:58:21 +09:00 committed by Jason Nader
parent 47be36410c
commit 5024a13b8b
No known key found for this signature in database
GPG Key ID: EE220FCAA09AF23D
2 changed files with 1 additions and 5 deletions

View File

@ -104,10 +104,6 @@ void debuglog(char *fmt, ...) {
* fork to avoid zombie processes. As the started applications parent exits
* (immediately), the application is reparented to init (process-id 1), which
* correctly handles children, so we dont have to do it :-).
*
* The shell is determined by looking for the SHELL environment variable. If it
* does not exist, /bin/sh is used.
*
*/
static void start_application(const char *command) {
printf("executing: %s\n", command);

View File

@ -528,7 +528,7 @@ static void child_write_output(void) {
/*
* Start a child process with the specified command and reroute stdin.
* We actually start a $SHELL to execute the command so we don't have to care
* We actually start a shell to execute the command so we don't have to care
* about arguments and such.
*
* If `command' is NULL, such as in the case when no `status_command' is given