From a9801658ee4b7f5717d145818428452f864e1015 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 7 Sep 2006 16:20:03 +0000 Subject: getty, sulogin: convert to using bb_msg for syslog output --- coreutils/nohup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils') 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. -- cgit v1.2.3