From 54afcfbfb4e0e972455b870887151cb04d29c9c7 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 20 Jul 2009 14:37:51 +0000 Subject: Display the number of failed password attempts (if any) when the server is locked. From Tom Doherty. --- tmux.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index d8499202..9ca1783f 100644 --- a/tmux.c +++ b/tmux.c @@ -46,6 +46,7 @@ struct options global_s_options; /* session options */ struct options global_w_options; /* window options */ int server_locked; +u_int password_failures; char *server_password; time_t server_activity; -- cgit