diff options
author | Denis Vlasenko | 2006-09-07 16:20:03 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-07 16:20:03 +0000 |
commit | a9801658ee4b7f5717d145818428452f864e1015 (patch) | |
tree | f85bbdf6cb572751dee639feb9896cad3503b924 /coreutils | |
parent | b750dec40a4bf013f98658b46925117d9d1d4811 (diff) | |
download | busybox-a9801658ee4b7f5717d145818428452f864e1015.zip busybox-a9801658ee4b7f5717d145818428452f864e1015.tar.gz |
getty, sulogin: convert to using bb_msg for syslog output
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/nohup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/nohup.c b/coreutils/nohup.c index 86d7886..5dd90ad 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. |