Lines Matching defs:pwent
732 &pwent->id, sizeof(pwent->id))) != 0) \
767 struct passwd *pwent;
778 pwent = getpwnamallow(ssh, authctxt->user);
780 setproctitle("%s [priv]", pwent ? authctxt->user : "unknown");
784 if (pwent == NULL) {
792 authctxt->pw = pwent;
802 if ((r = sshbuf_put_cstring(m, pwent->pw_name)) != 0 ||
804 (r = sshbuf_put_cstring(m, pwent->pw_gecos)) != 0 ||
805 (r = sshbuf_put_cstring(m, pwent->pw_class)) != 0 ||
806 (r = sshbuf_put_cstring(m, pwent->pw_dir)) != 0 ||
807 (r = sshbuf_put_cstring(m, pwent->pw_shell)) != 0)