diff options
-rw-r--r-- | tty.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.136 2009-09-23 15:00:09 tcunha Exp $ */ +/* $Id: tty.c,v 1.137 2009-09-23 15:08:21 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -133,6 +133,9 @@ tty_start_tty(struct tty *tty) int what; #endif + if (tty->fd == -1) + return; + #if 0 tty_detect_utf8(tty); #endif |