Home | History | Annotate | Download | only in openssh

Lines Matching defs:pw

298 	struct passwd *pw;
308 pw = getpwuid(uid);
309 if (pw == NULL)
313 if (strlcpy(li->username, pw->pw_name, sizeof(li->username)) >=
316 (unsigned long)strlen(pw->pw_name),
369 struct passwd *pw;
381 pw = getpwnam(li->username);
382 if (pw == NULL) {
386 li->uid = pw->pw_uid;