summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroblique <psyberbits@gmail.com>2013-10-17 13:35:33 +0300
committerMichael Stapelberg <michael@stapelberg.de>2013-10-20 22:34:22 +0200
commit33d953fbdf4f8630e919643974f32ce6793c7c2b (patch)
tree27a4b675af8d9aa61a0b151a917f43e923a334f5
parenta305e622a6cad3f9ba267d6810fee54b7c7c86c3 (diff)
Bug fix: Call clear_input() when the password is wrong.
clear_input() calls start_clear_indicator_timeout() to clear the indicator after 1 second. This had as a result the screen to be cleared when the "verifying…" message was showed, so the "wrong!" message didn't show up when the password was wrong. First bad commit: a305e62
-rw-r--r--i3lock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/i3lock.c b/i3lock.c
index 7d1f7b3..2d8a580 100644
--- a/i3lock.c
+++ b/i3lock.c
@@ -205,6 +205,7 @@ static void auth_failed(void) {
fprintf(stderr, "Authentication failure\n");
pam_state = STATE_PAM_WRONG;
+ clear_input();
redraw_screen();
/* Clear this state after 2 seconds (unless the user enters another
@@ -258,7 +259,6 @@ static void input_done(void) {
if (cpid == 0) {
exit(pam_authenticate(pam_handle, 0) == PAM_SUCCESS);
} else if (cpid > 0) {
- clear_input();
struct ev_child *child_watcher = calloc(sizeof(struct ev_io), 1);
ev_child_init(child_watcher, child_cb, cpid, 0);
ev_child_set(child_watcher, cpid, 0);