summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tty.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2017-02-08 13:53:32 +0000
committernicm <nicm@openbsd.org>2017-02-08 13:53:32 +0000
commitd2f221915b721b002e4ce7ca55c0ef12551515fb (patch)
tree696d32fb58a13a7d73619b82488adb70ef83dfff /usr.bin/tmux/tty.c
parentDue to non-blocking sockets, tls_handshake() could wait in a busy (diff)
downloadwireguard-openbsd-d2f221915b721b002e4ce7ca55c0ef12551515fb.tar.xz
wireguard-openbsd-d2f221915b721b002e4ce7ca55c0ef12551515fb.zip
Improve some of the logging on resize.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r--usr.bin/tmux/tty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c
index 4e597ae4c5e..3eb14ed4ef2 100644
--- a/usr.bin/tmux/tty.c
+++ b/usr.bin/tmux/tty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.234 2017/02/08 08:54:45 nicm Exp $ */
+/* $OpenBSD: tty.c,v 1.235 2017/02/08 13:53:32 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -142,6 +142,7 @@ tty_resize(struct tty *tty)
sx = 80;
sy = 24;
}
+ log_debug("%s: %s now %ux%u", __func__, tty->path, sx, sy);
if (!tty_set_size(tty, sx, sy))
return (0);