aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-07 16:20:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-07 16:20:03 +0000
commita9801658ee4b7f5717d145818428452f864e1015 (patch)
treef85bbdf6cb572751dee639feb9896cad3503b924 /coreutils
parentb750dec40a4bf013f98658b46925117d9d1d4811 (diff)
downloadbusybox-a9801658ee4b7f5717d145818428452f864e1015.tar.gz
getty, sulogin: convert to using bb_msg for syslog output
Diffstat (limited to 'coreutils')
-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.