diff options
Diffstat (limited to 'toys/posix/ps.c')
-rw-r--r-- | toys/posix/ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ps.c b/toys/posix/ps.c index 9557b64d..445228fd 100644 --- a/toys/posix/ps.c +++ b/toys/posix/ps.c @@ -453,7 +453,7 @@ static char *string_field(struct carveup *tb, struct strawberry *field) if (gr) out = gr->gr_name; } else { - struct passwd *pw = getpwuid(ll); + struct passwd *pw = bufgetpwuid(ll); if (pw) out = pw->pw_name; } |