Home
last modified time | relevance | path

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

/netbsd-src/external/gpl2/xcvs/dist/src/
H A Dserver.c6983 char *found_passwd = NULL; in check_system_password() local
6991 found_passwd = spw->sp_pwdp; in check_system_password()
6995 if (found_passwd == NULL && (pw = getpwnam (username)) != NULL) in check_system_password()
6996 found_passwd = pw->pw_passwd; in check_system_password()
6998 if (found_passwd == NULL) in check_system_password()
7019 strtok (found_passwd, ","); in check_system_password()
7021 if (*found_passwd) in check_system_password()
7024 if (strcmp (found_passwd, crypt (password, found_passwd)) == 0) in check_system_password()
7031 crypt(password, found_passwd), found_passwd); in check_system_password()