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>
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 1989 - 1994, Julianne Frances Haugh
|
|
* SPDX-FileCopyrightText: 1996 - 2000, Marek Michałkiewicz
|
|
* SPDX-FileCopyrightText: 2003 - 2005, Tomasz Kłoczko
|
|
* SPDX-FileCopyrightText: 2007 - 2008, Nicolas François
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ident "$Id$"
|
|
|
|
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
#include "prototypes.h"
|
|
#include "defines.h"
|
|
#include <pwd.h>
|
|
|
|
void pw_entry (const char *name, struct passwd *pwent)
|
|
{
|
|
struct passwd *passwd;
|
|
|
|
struct spwd *spwd;
|
|
|
|
if (!(passwd = getpwnam (name))) { /* local, no need for xgetpwnam */
|
|
pwent->pw_name = (char *) 0;
|
|
return;
|
|
} else {
|
|
pwent->pw_name = xstrdup (passwd->pw_name);
|
|
pwent->pw_uid = passwd->pw_uid;
|
|
pwent->pw_gid = passwd->pw_gid;
|
|
pwent->pw_gecos = xstrdup (passwd->pw_gecos);
|
|
pwent->pw_dir = xstrdup (passwd->pw_dir);
|
|
pwent->pw_shell = xstrdup (passwd->pw_shell);
|
|
#if !defined(AUTOSHADOW)
|
|
/* local, no need for xgetspnam */
|
|
if ((spwd = getspnam (name))) {
|
|
pwent->pw_passwd = xstrdup (spwd->sp_pwdp);
|
|
return;
|
|
}
|
|
#endif
|
|
pwent->pw_passwd = xstrdup (passwd->pw_passwd);
|
|
}
|
|
}
|