1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r15039: Fix an uninitialized variable. I _think_ this should default to

PAM_SUCCESS. Günther, could you take a look?

Thanks,

Volker
(This used to be commit fc6effcd9c)
This commit is contained in:
Volker Lendecke 2006-04-11 15:11:27 +00:00 committed by Gerald (Jerry) Carter
parent 9608b4328d
commit 33788e5883

View File

@ -1031,7 +1031,7 @@ int pam_sm_close_session(pam_handle_t *pamh, int flags,
int argc, const char **argv)
{
dictionary *d;
int retval;
int retval = PAM_SUCCESS;
/* parse arguments */
int ctrl = _pam_parse(argc, argv, &d);