aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-08-11 22:34:17 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-08-11 22:34:17 +0000
commite0a19abb99aebcee544c451ff5e99f6a59d42d0c (patch)
tree110224661ebd7e160076f8d43ff626c39afbe924 /tty.c
parent4310282a4c52f1885ae2eb80b106c9c03564a0b8 (diff)
downloadrtmux-e0a19abb99aebcee544c451ff5e99f6a59d42d0c.tar.gz
rtmux-e0a19abb99aebcee544c451ff5e99f6a59d42d0c.tar.bz2
rtmux-e0a19abb99aebcee544c451ff5e99f6a59d42d0c.zip
Initialise log_fd to -1, prevents spurious disconnection of the client when it
ends up as fd 0 (likely if the server is started with "tmux start"). Also add some extra debugging messages to server.c.
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tty.c b/tty.c
index d850347a..c6904409 100644
--- a/tty.c
+++ b/tty.c
@@ -49,6 +49,7 @@ tty_init(struct tty *tty, int fd, char *path, char *term)
{
tty->path = xstrdup(path);
tty->fd = fd;
+ tty->log_fd = -1;
if (term == NULL || *term == '\0')
tty->termname = xstrdup("unknown");