From 62af4b5baa54bb4838197969064d3c2b090325cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20B=C5=99ezina?= Date: Thu, 18 Jun 2020 15:08:24 +0200 Subject: [PATCH] pam_sss: fix missing initializer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the following error introduced by: 3ed254765fc92e9cc9e4c35335818eaf1256e0d6 ``` /home/pbrezina/workspace/sssd/src/sss_client/pam_sss.c: In function ‘prompt_sc_pin’: /home/pbrezina/workspace/sssd/src/sss_client/pam_sss.c:1839:41: error: missing initializer for field ‘next’ of ‘struct cert_auth_info’ [-Werror=missing-field-initializers] NULL, NULL, NULL, NULL, NULL }; ^~~~ /home/pbrezina/workspace/sssd/src/sss_client/pam_sss.c:132:28: note: ‘next’ declared here struct cert_auth_info *next; ``` Reviewed-by: Alexey Tikhonov (cherry picked from commit a08d4741cd5d2ecea44eb590e881baf2071e34d2) --- src/sss_client/pam_sss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sss_client/pam_sss.c b/src/sss_client/pam_sss.c index 38a75e1b6..7084ce953 100644 --- a/src/sss_client/pam_sss.c +++ b/src/sss_client/pam_sss.c @@ -1800,7 +1800,7 @@ static int prompt_sc_pin(pam_handle_t *pamh, struct pam_items *pi) struct pam_response *resp = NULL; struct cert_auth_info *cai = pi->selected_cert; struct cert_auth_info empty_cai = { NULL, NULL, discard_const("Smartcard"), - NULL, NULL, NULL, NULL, NULL }; + NULL, NULL, NULL, NULL, NULL, NULL }; if (cai == NULL && SERVICE_IS_GDM_SMARTCARD(pi)) { cai = &empty_cai; -- 2.35.3