From: nicm Date: Mon, 29 Nov 2021 11:05:28 +0000 (+0000) Subject: Bump response timer to three seconds, GitHub issue 2984. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b51e7616881e63a611ef9d54bc5c2846bb04c3d8;p=openbsd Bump response timer to three seconds, GitHub issue 2984. --- 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);