From e2aa1f4fa9a36d223e271cc24dfad691f6a56d12 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 7 Oct 2000 23:46:22 +0000 Subject: Formatting update --- libc/pwd_grp/putpwent.c | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'libc/pwd_grp/putpwent.c') diff --git a/libc/pwd_grp/putpwent.c b/libc/pwd_grp/putpwent.c index a0035ea98..da8e13d67 100644 --- a/libc/pwd_grp/putpwent.c +++ b/libc/pwd_grp/putpwent.c @@ -22,18 +22,17 @@ #include #include -int -putpwent(const struct passwd * passwd, FILE * f) +int putpwent(const struct passwd *passwd, FILE * f) { - if (passwd == NULL || f == NULL) - { - errno=EINVAL; - return -1; - } - if (fprintf(f, "%s:%s:%u:%u:%s:%s:%s\n", passwd->pw_name, passwd->pw_passwd, - passwd->pw_gid, passwd->pw_uid, passwd->pw_gecos, - passwd->pw_dir, passwd->pw_shell)<0) - return -1; + if (passwd == NULL || f == NULL) { + errno = EINVAL; + return -1; + } + if (fprintf + (f, "%s:%s:%u:%u:%s:%s:%s\n", passwd->pw_name, passwd->pw_passwd, + passwd->pw_gid, passwd->pw_uid, passwd->pw_gecos, passwd->pw_dir, + passwd->pw_shell) < 0) + return -1; - return 0; + return 0; } -- cgit v1.2.3