Merge pull request #3960 from ammgws/patch-2
Remove comment referencing old source code
This commit is contained in:
commit
d2acdcc69f
|
@ -104,10 +104,6 @@ void debuglog(char *fmt, ...) {
|
||||||
* fork to avoid zombie processes. As the started application’s parent exits
|
* fork to avoid zombie processes. As the started application’s parent exits
|
||||||
* (immediately), the application is reparented to init (process-id 1), which
|
* (immediately), the application is reparented to init (process-id 1), which
|
||||||
* correctly handles children, so we don’t have to do it :-).
|
* correctly handles children, so we don’t 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) {
|
static void start_application(const char *command) {
|
||||||
printf("executing: %s\n", command);
|
printf("executing: %s\n", command);
|
||||||
|
|
|
@ -528,7 +528,7 @@ static void child_write_output(void) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Start a child process with the specified command and reroute stdin.
|
* 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.
|
* about arguments and such.
|
||||||
*
|
*
|
||||||
* If `command' is NULL, such as in the case when no `status_command' is given
|
* If `command' is NULL, such as in the case when no `status_command' is given
|
||||||
|
|
Loading…
Reference in New Issue