diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-20 14:37:51 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-20 14:37:51 +0000 |
commit | 54afcfbfb4e0e972455b870887151cb04d29c9c7 (patch) | |
tree | c1495aaa5f8d083b6752345cdbc15b2bbbda972c /tmux.c | |
parent | b292f71c49b4222b34684aee44029ca2d6aeb4dd (diff) | |
download | rtmux-54afcfbfb4e0e972455b870887151cb04d29c9c7.tar.gz rtmux-54afcfbfb4e0e972455b870887151cb04d29c9c7.tar.bz2 rtmux-54afcfbfb4e0e972455b870887151cb04d29c9c7.zip |
Display the number of failed password attempts (if any) when the server is
locked. From Tom Doherty.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |