diff options
Diffstat (limited to 'usr/src/lib/libc/port/gen/putpwent.c')
| -rw-r--r-- | usr/src/lib/libc/port/gen/putpwent.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/lib/libc/port/gen/putpwent.c b/usr/src/lib/libc/port/gen/putpwent.c index efc482c7f4..b4c1928902 100644 --- a/usr/src/lib/libc/port/gen/putpwent.c +++ b/usr/src/lib/libc/port/gen/putpwent.c @@ -27,8 +27,6 @@ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * format a password file entry */ @@ -55,7 +53,7 @@ putpwent(const struct passwd *p, FILE *f) p->pw_dir ? p->pw_dir : "", p->pw_shell ? p->pw_shell : ""); } else { /* "normal case" */ - (void) fprintf(f, ":%d:%d:%s:%s:%s", + (void) fprintf(f, ":%u:%u:%s:%s:%s", p->pw_uid, p->pw_gid, p->pw_gecos, |
