Browse Source

Ignore password validation is pam is in wrong state

This add a protection against wrong password spamming
master
Neodyblue 11 years ago
committed by Michael Stapelberg
parent
commit
8a630bec65
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      i3lock.c

+ 3
- 0
i3lock.c View File

@ -299,6 +299,9 @@ static void handle_key_press(xcb_key_press_event_t *event) {
case XKB_KEY_Return:
case XKB_KEY_KP_Enter:
case XKB_KEY_XF86ScreenSaver:
if (pam_state == STATE_PAM_WRONG)
return;
if (skip_without_validation()) {
clear_input();
return;


Loading…
Cancel
Save