Lines Matching defs:pwd_iter
52 struct passwd *pwd_iter = NULL;
74 while ((pwd_iter = fgetpwent(pwd_handle)) != NULL) {
81 pwd_iter->pw_name, pwd_iter->pw_passwd,
82 pwd_iter->pw_uid, pwd_iter->pw_gid,
83 pwd_iter->pw_gecos, pwd_iter->pw_dir,
84 pwd_iter->pw_shell);
92 pwd->pw_uid = pwd_iter->pw_uid;
93 pwd->pw_gid = pwd_iter->pw_gid;
95 pwd->pw_name = talloc_strdup(pwd, pwd_iter->pw_name);
105 pwd->pw_dir = talloc_strdup(pwd, pwd_iter->pw_dir);
106 pwd->pw_gecos = talloc_strdup(pwd, pwd_iter->pw_gecos);
107 pwd->pw_shell = talloc_strdup(pwd, pwd_iter->pw_shell);
108 pwd->pw_passwd = talloc_strdup(pwd, pwd_iter->pw_passwd);