From b51e7616881e63a611ef9d54bc5c2846bb04c3d8 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 29 Nov 2021 11:05:28 +0000 Subject: [PATCH] Bump response timer to three seconds, GitHub issue 2984. --- usr.bin/tmux/tty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 4e13938b2f1..a10567d5d4b 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.411 2021/11/03 13:37:17 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.412 2021/11/29 11:05:28 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -302,7 +302,7 @@ tty_start_tty(struct tty *tty) { struct client *c = tty->client; struct termios tio; - struct timeval tv = { .tv_sec = 1 }; + struct timeval tv = { .tv_sec = 3 }; setblocking(c->fd, 0); event_add(&tty->event_in, NULL); -- 2.20.1