Home
last modified time | relevance | path

Searched refs:xpasswd (Results 1 – 3 of 3) sorted by relevance

/freebsd/usr.bin/logins/
H A Dlogins.c41 struct xpasswd { struct
178 static struct xpasswd *pwds;
234 struct xpasswd *pwd; in select_users()
291 display_user(struct xpasswd *pwd) in display_user()
329 struct xpasswd *pwd; in list_users()
/freebsd/contrib/telnet/libtelnet/
H A Dsra.c435 char *xpasswd, *salt; in check_user() local
450 xpasswd = crypt(cred, salt); in check_user()
453 strcmp(xpasswd, pw->pw_passwd)) { in check_user()
/freebsd/libexec/ftpd/
H A Dftpd.c1346 char *xpasswd; in pass() local
1364 xpasswd = crypt(passwd, pw->pw_passwd); in pass()
1366 xpasswd = ":"; in pass()
1367 rval = strcmp(pw->pw_passwd, xpasswd); in pass()