Browse Source

s/pam_message/pam_response/ (Thanks Tucos)

The previous code didn’t cause any issues since both types (currently!)
have the same size.
master
Michael Stapelberg 13 years ago
parent
commit
2cadf22c67
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      i3lock.c

+ 1
- 1
i3lock.c View File

@ -439,7 +439,7 @@ static int conv_callback(int num_msg, const struct pam_message **msg,
return 1; return 1;
/* PAM expects an array of responses, one for each message */ /* 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"); perror("calloc");
return 1; return 1;
} }


Loading…
Cancel
Save