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/getpw.c | 45 ++++++++++++++++++++------------------------- 1 file changed, 20 insertions(+), 25 deletions(-) (limited to 'libc/pwd_grp/getpw.c') diff --git a/libc/pwd_grp/getpw.c b/libc/pwd_grp/getpw.c index 4f4e39025..f0663c917 100644 --- a/libc/pwd_grp/getpw.c +++ b/libc/pwd_grp/getpw.c @@ -23,29 +23,24 @@ #include #include -int -getpw(uid_t uid, char *buf) +int getpw(uid_t uid, char *buf) { - struct passwd * passwd; - - if (buf==NULL) - { - errno=EINVAL; - return -1; - } - if ((passwd=getpwuid(uid))==NULL) - return -1; - - if (sprintf(buf, "%s:%s:%u:%u:%s:%s:%s", passwd->pw_name, passwd->pw_passwd, - passwd->pw_gid, passwd->pw_uid, passwd->pw_gecos, - passwd->pw_dir, passwd->pw_shell)<0) - { - errno=ENOBUFS; - return -1; - } - - return 0; -} - - - + struct passwd *passwd; + + if (buf == NULL) { + errno = EINVAL; + return -1; + } + if ((passwd = getpwuid(uid)) == NULL) + return -1; + + if (sprintf + (buf, "%s:%s:%u:%u:%s:%s:%s", passwd->pw_name, passwd->pw_passwd, + passwd->pw_gid, passwd->pw_uid, passwd->pw_gecos, passwd->pw_dir, + passwd->pw_shell) < 0) { + errno = ENOBUFS; + return -1; + } + + return 0; +} -- cgit v1.2.3