From 23457259675d4a21f6840a30e2b41014540eab2d Mon Sep 17 00:00:00 2001 From: David McCullough Date: Thu, 17 Jan 2002 06:26:05 +0000 Subject: * Added /etc/shadow support (Config selectable) * Moved some file paths from code into --- libc/pwd_grp/getpwuid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/pwd_grp/getpwuid.c') diff --git a/libc/pwd_grp/getpwuid.c b/libc/pwd_grp/getpwuid.c index 101d668ae..4d6d60ee8 100644 --- a/libc/pwd_grp/getpwuid.c +++ b/libc/pwd_grp/getpwuid.c @@ -22,9 +22,9 @@ #include #include #include +#include #include "config.h" - #define PWD_BUFFER_SIZE 256 /* file descriptor for the password file currently open */ @@ -36,7 +36,7 @@ int getpwuid_r (uid_t uid, struct passwd *password, { int passwd_fd; - if ((passwd_fd = open("/etc/passwd", O_RDONLY)) < 0) + if ((passwd_fd = open(_PATH_PASSWD, O_RDONLY)) < 0) return -1; while (__getpwent_r(password, buff, buflen, passwd_fd) != -1) -- cgit v1.2.3