summaryrefslogtreecommitdiff
path: root/src/passwd/putpwent.c
blob: 80fbf3843d5e5909f1b6d74644cd1e11ed050b2e (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <pwd.h>
#include <stdio.h>

int putpwent(const struct passwd *pw, FILE *f)
{
	return fprintf(f, "%s:%s:%d:%d:%s:%s:%s\n",
		pw->pw_name, pw->pw_passwd, pw->pw_uid, pw->pw_gid,
		pw->pw_gecos, pw->pw_dir, pw->pw_shell)<0 ? -1 : 0;
}