diff options
Diffstat (limited to 'libc/pwd_grp/pwent.c')
-rw-r--r-- | libc/pwd_grp/pwent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/pwd_grp/pwent.c b/libc/pwd_grp/pwent.c index e3488f4f5..b2c149b35 100644 --- a/libc/pwd_grp/pwent.c +++ b/libc/pwd_grp/pwent.c @@ -72,7 +72,8 @@ int getpwent_r (struct passwd *password, char *buff, int ret=EINVAL; LOCK; *result = NULL; - if (pw_fd != -1 && (ret=__getpwent_r(password, buff, buflen, pw_fd)) == 0) { + + if ((ret=__getpwent_r(password, buff, buflen, pw_fd)) == 0) { UNLOCK; *result = password; return 0; |