Bump response timer to three seconds, GitHub issue 2984.
authornicm <nicm@openbsd.org>
Mon, 29 Nov 2021 11:05:28 +0000 (11:05 +0000)
committernicm <nicm@openbsd.org>
Mon, 29 Nov 2021 11:05:28 +0000 (11:05 +0000)
usr.bin/tmux/tty.c

index 4e13938..a10567d 100644 (file)
@@ -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 <nicholas.marriott@gmail.com>
@@ -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);