aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-20 16:07:23 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-20 16:07:23 +0000
commit54c6848d75bb4ab33cfeb0dd60e258ea799ffe55 (patch)
tree54ca1169651f1b796e0a92cbd8a0bbcc53e6b33a /tmux.c
parent9a07e8f3724646762708eab10e102a6a9a8c5583 (diff)
downloadrtmux-54c6848d75bb4ab33cfeb0dd60e258ea799ffe55.tar.gz
rtmux-54c6848d75bb4ab33cfeb0dd60e258ea799ffe55.tar.bz2
rtmux-54c6848d75bb4ab33cfeb0dd60e258ea799ffe55.zip
Sync OpenBSD patchset 148:
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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 387f1775..1fa6996c 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.146 2009-07-20 16:01:07 tcunha Exp $ */
+/* $Id: tmux.c,v 1.147 2009-07-20 16:07:23 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -51,6 +51,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;