Home | History | Annotate | Download | only in chpass

Lines Matching refs:strdup

161 	yppw.newpw.pw_name	 = strdup(pw->pw_name);
163 err(1, "strdup");
166 yppw.newpw.pw_passwd = strdup(pw->pw_passwd);
168 err(1, "strdup");
173 yppw.newpw.pw_gecos = strdup(pw->pw_gecos);
175 err(1, "strdup");
178 yppw.newpw.pw_dir = strdup(pw->pw_dir);
180 err(1, "strdup");
183 yppw.newpw.pw_shell = strdup(pw->pw_shell);
185 err(1, "strdup");