HomeSort by relevance Sort by last modified time
    Searched refs:spw (Results 1 - 4 of 4) sorted by null

  /external/openssh/
auth-shadow.c 56 auth_shadow_acctexpired(struct spwd *spw)
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->sp_max)
    [all...]
auth.c 101 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/openssh/openbsd-compat/
xcrypt.c 95 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/ipsec-tools/src/racoon/
isakmp_xauth.c 1193 struct spwd *spw; local
1195 if ((spw = getspnam(usr)) == NULL)
1198 syscryptpwd = spw->sp_pwdp;
    [all...]

Completed in 43 milliseconds