mirror of
https://github.com/Yubico/yubico-pam.git
synced 2025-03-16 03:29:17 +01:00
fix initialization of msg to not warn
apparently this is gcc bug 53119
This commit is contained in:
parent
ec84a78453
commit
344d1b4384
@ -790,7 +790,7 @@ pam_sm_authenticate (pam_handle_t * pamh,
|
|||||||
int valid_token = 0;
|
int valid_token = 0;
|
||||||
struct pam_conv *conv;
|
struct pam_conv *conv;
|
||||||
const struct pam_message *pmsg[1];
|
const struct pam_message *pmsg[1];
|
||||||
struct pam_message msg[1] = {0};
|
struct pam_message msg[1] = {{0}};
|
||||||
struct pam_response *resp = NULL;
|
struct pam_response *resp = NULL;
|
||||||
int nargs = 1;
|
int nargs = 1;
|
||||||
ykclient_t *ykc = NULL;
|
ykclient_t *ykc = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user