]> git.sur5r.net Git - i3/i3lock/commitdiff
s/pam_message/pam_response/ (Thanks Tucos)
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 15 Oct 2012 20:39:49 +0000 (22:39 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 15 Oct 2012 20:40:29 +0000 (22:40 +0200)
The previous code didn’t cause any issues since both types (currently!)
have the same size.

i3lock.c

index ae1e884cffcf53067b9e86fae3ac7c968ad8a65e..8d4eb11ff2405c21d8c795786ba0a4c3e22e4976 100644 (file)
--- 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;
     }