Lines Matching full:pass
65 char * pass;
70 pass = crypt(toybuf, pwd);
71 if (pass && !strcmp(pass, pwd)) return 0;
102 char *name = NULL, *pass = NULL, *encrypted = NULL, *newp = NULL,
120 pass = pw->pw_passwd;
124 if (sp) pass = sp->sp_pwdp;
135 if (myuid && pass[0] == '!')
145 if (verify_passwd(pass)) error_exit("Authentication failed\n");
162 if (pass[0] == '!') error_exit("password is already locked for %s",name);
164 encrypted = xmprintf("!%s",pass);
166 if (pass[0] != '!') error_exit("password is already unlocked for %s",name);
169 encrypted = xstrdup(&pass[1]);