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. --- server-fn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'server-fn.c') diff --git a/server-fn.c b/server-fn.c index 3080bed4..409f65bc 100644 --- a/server-fn.c +++ b/server-fn.c @@ -213,9 +213,11 @@ server_unlock(const char *s) } server_locked = 0; + password_failures = 0; return (0); wrong: + password_failures++; for (i = 0; i < ARRAY_LENGTH(&clients); i++) { c = ARRAY_ITEM(&clients, i); if (c == NULL || c->prompt_buffer == NULL) @@ -223,7 +225,7 @@ wrong: *c->prompt_buffer = '\0'; c->prompt_index = 0; - server_status_client(c); + server_redraw_client(c); } return (-1); -- cgit