Author: baggins Date: Tue Oct 25 18:46:40 2005 New Revision: 6484 Modified: rc-scripts/trunk/rc.d/rc Log: - all stty's stderr belongs to /dev/null
Modified: rc-scripts/trunk/rc.d/rc ============================================================================== --- rc-scripts/trunk/rc.d/rc (original) +++ rc-scripts/trunk/rc.d/rc Tue Oct 25 18:46:40 2005 @@ -21,7 +21,7 @@ # Get terminal size of standard input of the system console [ -z "$CONSOLE" ] && CONSOLE=/dev/console -set -- $(stty size < $CONSOLE) +set -- $(stty size < $CONSOLE 2>/dev/null) LINES=$1 COLUMNS=$2 export LINES COLUMNS CONSOLE _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
