summaryrefslogtreecommitdiff
path: root/unlock_indicator.h
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@users.noreply.github.com>2017-04-17 17:00:39 +0200
committerGitHub <noreply@github.com>2017-04-17 17:00:39 +0200
commit0bed914e8eccb5d62cb12de4b26541b7441c94dc (patch)
tree513909183e7b174b06f5bc2b2e66230b23dd4e4f /unlock_indicator.h
parent512c10f1ddff05998b23450a2d834ffb36a5be38 (diff)
parent68fc2e8b5f8bcd203598e6da2a98d5aa7359af1e (diff)
Merge pull request #123 from jasperla/bsdauth
Add support for bsd_auth(3) as authentication backend
Diffstat (limited to 'unlock_indicator.h')
-rw-r--r--unlock_indicator.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/unlock_indicator.h b/unlock_indicator.h
index acfe768..2321620 100644
--- a/unlock_indicator.h
+++ b/unlock_indicator.h
@@ -11,12 +11,12 @@ typedef enum {
} unlock_state_t;
typedef enum {
- STATE_PAM_IDLE = 0, /* no PAM interaction at the moment */
- STATE_PAM_VERIFY = 1, /* currently verifying the password via PAM */
- STATE_PAM_LOCK = 2, /* currently locking the screen */
- STATE_PAM_WRONG = 3, /* the password was wrong */
+ STATE_AUTH_IDLE = 0, /* no authenticator interaction at the moment */
+ STATE_AUTH_VERIFY = 1, /* currently verifying the password via authenticator */
+ STATE_AUTH_LOCK = 2, /* currently locking the screen */
+ STATE_AUTH_WRONG = 3, /* the password was wrong */
STATE_I3LOCK_LOCK_FAILED = 4 /* i3lock failed to load */
-} pam_state_t;
+} auth_state_t;
xcb_pixmap_t draw_image(uint32_t* resolution);
void redraw_screen(void);