changeset 422:82d70cff7357

Very slight efficiency tweak.
author Rob Landley <rob@landley.net>
date Thu, 02 Feb 2012 07:42:31 -0600
parents 1ca548d46c8e
children 2a2b483a4cf9
files toys/nohup.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/toys/nohup.c	Thu Feb 02 07:29:09 2012 -0600
+++ b/toys/nohup.c	Thu Feb 02 07:42:31 2012 -0600
@@ -24,7 +24,7 @@
 void nohup_main(void)
 {
 	signal(SIGHUP, SIG_IGN);
-	if (ttyname(1)) {
+	if (isatty(1)) {
 		close(1);
 		if (-1 == open("nohup.out", O_CREAT|O_APPEND|O_WRONLY,
 				S_IRUSR|S_IWUSR ))
@@ -34,7 +34,7 @@
 			xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, S_IRUSR|S_IWUSR);
 		}
 	}
-	if (ttyname(0)) {
+	if (isatty(0)) {
 		close(0);
 		open("/dev/null", O_RDONLY);
 	}