From 2cadf22c67beedcc52b70c76518c91467581ffb8 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 15 Oct 2012 22:39:49 +0200 Subject: [PATCH] s/pam_message/pam_response/ (Thanks Tucos) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous code didn’t cause any issues since both types (currently!) have the same size. --- i3lock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }