Sync OpenBSD patchset 348:

Don't die if the client is detaching (the tty has been closed) after waking up
from locking.
pull/1/head
Tiago Cunha 2009-09-23 15:08:21 +00:00
parent 88f689e167
commit fea7bda58f
1 changed files with 4 additions and 1 deletions

5
tty.c
View File

@ -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