aboutsummaryrefslogtreecommitdiff
path: root/coreutils/nohup.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/nohup.c')
-rw-r--r--coreutils/nohup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/nohup.c b/coreutils/nohup.c
index 86d788683..5dd90adcc 100644
--- a/coreutils/nohup.c
+++ b/coreutils/nohup.c
@@ -47,7 +47,7 @@ int nohup_main(int argc, char *argv[])
47 if (temp) fdprintf(2,"Writing to %s\n", home ? home : nohupout); 47 if (temp) fdprintf(2,"Writing to %s\n", home ? home : nohupout);
48 dup2(temp ? 1 : nullfd, 2); 48 dup2(temp ? 1 : nullfd, 2);
49 close(nullfd); 49 close(nullfd);
50 signal (SIGHUP, SIG_IGN); 50 signal(SIGHUP, SIG_IGN);
51 51
52 // Exec our new program. 52 // Exec our new program.
53 53