mirror of
https://github.com/tmate-io/tmate.git
synced 2026-08-01 15:20:02 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
9763282dc1
1 changed files with 3 additions and 1 deletions
4
tty.c
4
tty.c
|
|
@ -663,7 +663,9 @@ tty_write(
|
|||
c = ARRAY_ITEM(&clients, i);
|
||||
if (c == NULL || c->session == NULL || c->tty.term == NULL)
|
||||
continue;
|
||||
if (c->flags & (CLIENT_SUSPENDED|TTY_FREEZE))
|
||||
if (c->flags & CLIENT_SUSPENDED)
|
||||
continue;
|
||||
if (c->tty.flags & TTY_FREEZE)
|
||||
continue;
|
||||
if (c->session->curw->window != wp->window)
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue