summaryrefslogtreecommitdiff
path: root/i3lock.c
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2012-10-15 22:39:49 +0200
committerMichael Stapelberg <michael@stapelberg.de>2012-10-15 22:40:29 +0200
commit2cadf22c67beedcc52b70c76518c91467581ffb8 (patch)
tree5f9d1731834628e7403ce70fe08c20d44aef77d7 /i3lock.c
parent603c90e9859f30671841bbc305e53fbb7bf7fee8 (diff)
s/pam_message/pam_response/ (Thanks Tucos)
The previous code didn’t cause any issues since both types (currently!) have the same size.
Diffstat (limited to 'i3lock.c')
-rw-r--r--i3lock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/i3lock.c b/i3lock.c
index ae1e884..8d4eb11 100644
--- a/i3lock.c
+++ b/i3lock.c
@@ -439,7 +439,7 @@ static int conv_callback(int num_msg, const struct pam_message **msg,
return 1;
/* PAM expects an array of responses, one for each message */
- if ((*resp = calloc(num_msg, sizeof(struct pam_message))) == NULL) {
+ if ((*resp = calloc(num_msg, sizeof(struct pam_response))) == NULL) {
perror("calloc");
return 1;
}