svn commit: trunk/busybox/console-tools

vodz at busybox.net vodz at busybox.net
Wed Oct 12 08:38:30 UTC 2005


Author: vodz
Date: 2005-10-12 01:38:28 -0700 (Wed, 12 Oct 2005)
New Revision: 11839

Log:
correct strange *3 isatty(0) code

Modified:
   trunk/busybox/console-tools/reset.c


Changeset:
Modified: trunk/busybox/console-tools/reset.c
===================================================================
--- trunk/busybox/console-tools/reset.c	2005-10-12 08:34:27 UTC (rev 11838)
+++ trunk/busybox/console-tools/reset.c	2005-10-12 08:38:28 UTC (rev 11839)
@@ -30,12 +30,12 @@
 
 extern int reset_main(int argc, char **argv)
 {
-	if (isatty(0) || isatty(0) || isatty(0)) {
+	if (isatty(1)) {
 		/* See 'man 4 console_codes' for details:
 		 * "ESC c"			-- Reset
 		 * "ESC ( K"		-- Select user mapping
 		 * "ESC [ J"		-- Erase display
-		 * "ESC [ 0 m"		-- Reset all Graphics Rendition display attributes
+		 * "ESC [ 0 m"		-- Reset all display attributes
 		 * "ESC [ ? 25 h"	-- Make cursor visible.
 		 */
 		printf("\033c\033(K\033[J\033[0m\033[?25h");




More information about the busybox-cvs mailing list