f93cf255d4
Closes #238 Update all files to list SPDX license shortname. Most files are BSD 3 clause license. The exceptions are: serge@sl ~/src/shadow$ git grep SPDX-License | grep -v BSD-3-Clause contrib/atudel:# SPDX-License-Identifier: BSD-4-Clause lib/tcbfuncs.c: * SPDX-License-Identifier: 0BSD libmisc/salt.c: * SPDX-License-Identifier: Unlicense src/login_nopam.c: * SPDX-License-Identifier: Unlicense src/nologin.c: * SPDX-License-Identifier: BSD-2-Clause src/vipw.c: * SPDX-License-Identifier: GPL-2.0-or-later Signed-off-by: Serge Hallyn <serge@hallyn.com>
36 lines
807 B
C
36 lines
807 B
C
/*
|
|
* SPDX-FileCopyrightText: 1999 , Marek Michałkiewicz
|
|
* SPDX-FileCopyrightText: 2001 - 2005, Tomasz Kłoczko
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <security/pam_appl.h>
|
|
#ifdef HAVE_SECURITY_PAM_MISC_H
|
|
# include <security/pam_misc.h>
|
|
#endif
|
|
#ifdef HAVE_SECURITY_OPENPAM_H
|
|
# include <security/openpam.h>
|
|
#endif
|
|
|
|
|
|
static struct pam_conv conv = {
|
|
SHADOW_PAM_CONVERSATION,
|
|
NULL
|
|
};
|
|
|
|
/* compatibility with different versions of Linux-PAM */
|
|
#if !HAVE_DECL_PAM_ESTABLISH_CRED
|
|
#define PAM_ESTABLISH_CRED PAM_CRED_ESTABLISH
|
|
#endif
|
|
#if !HAVE_DECL_PAM_DELETE_CRED
|
|
#define PAM_DELETE_CRED PAM_CRED_DELETE
|
|
#endif
|
|
#if !HAVE_DECL_PAM_NEW_AUTHTOK_REQD
|
|
#define PAM_NEW_AUTHTOK_REQD PAM_AUTHTOKEN_REQD
|
|
#endif
|
|
#if !HAVE_DECL_PAM_DATA_SILENT
|
|
#define PAM_DATA_SILENT 0
|
|
#endif
|