Searched defs:spw (Results 1 - 5 of 5) sorted by relevance

/external/openssh/openbsd-compat/
H A Dxcrypt.c95 struct spwd *spw = getspnam(pw->pw_name); local
97 if (spw != NULL)
98 pw_password = spw->sp_pwdp;
106 struct passwd_adjunct *spw; local
107 if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
108 pw_password = spw->pwa_passwd;
110 struct pr_passwd *spw = getprpwnam(pw->pw_name);
112 if (spw != NULL)
113 pw_password = spw->ufld.fd_encrypt;
/external/openssh/
H A Dauth-shadow.c56 auth_shadow_acctexpired(struct spwd *spw) argument
63 daysleft = spw->sp_expire - today;
65 (int)spw->sp_expire, daysleft);
67 if (spw->sp_expire == -1) {
70 logit("Account %.100s has expired", spw->sp_namp);
72 } else if (daysleft <= spw->sp_warn) {
90 struct spwd *spw = NULL; local
96 if ((spw = getspnam((char *)user)) == NULL) {
103 (int)spw->sp_lstchg, (int)spw
[all...]
H A Dauth.c101 struct spwd *spw = NULL; local
110 spw = getspnam(pw->pw_name);
112 if (!options.use_pam && spw != NULL && auth_shadow_acctexpired(spw))
120 if (spw != NULL)
124 passwd = spw->sp_pwdp;
/external/ipsec-tools/src/racoon/
H A Disakmp_xauth.c1193 struct spwd *spw; local
1195 if ((spw = getspnam(usr)) == NULL)
1198 syscryptpwd = spw->sp_pwdp;
/external/quake/quake/src/QW/server/
H A Dsv_main.c1203 static char *pw, *spw; local
1206 if (password.string == pw && spectator_password.string == spw)
1209 spw = spectator_password.string;
1214 if (spw && spw[0] && strcmp(spw, "none"))

Completed in 1149 milliseconds