Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-07 20:20:03 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-07 20:20:03 +0400
commita9801658ee4b7f5717d145818428452f864e1015 (patch)
treef85bbdf6cb572751dee639feb9896cad3503b924 /coreutils/nohup.c
parentb750dec40a4bf013f98658b46925117d9d1d4811 (diff)
getty, sulogin: convert to using bb_msg for syslog output
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[])
if (temp) fdprintf(2,"Writing to %s\n", home ? home : nohupout);
dup2(temp ? 1 : nullfd, 2);
close(nullfd);
- signal (SIGHUP, SIG_IGN);
+ signal(SIGHUP, SIG_IGN);
// Exec our new program.