aboutsummaryrefslogtreecommitdiff
path: root/libpwdgrp/getpwuid.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-07-26 07:48:13 +0000
committerEric Andersen <andersen@codepoet.org>2003-07-26 07:48:13 +0000
commitef73d3b5d9e9d5124b7c16bd77097fae3f200616 (patch)
treeac5a3d543cdd164a4aa2839abcfeb662de018a0d /libpwdgrp/getpwuid.c
parent7d72e796d6362872fe0075f936589bba23124344 (diff)
downloadbusybox-ef73d3b5d9e9d5124b7c16bd77097fae3f200616.tar.gz
Patch from Nick Fedchik to fixup paths in busybox/libpwdgrp
which were not properly using the bb_path_*_file strings.
Diffstat (limited to 'libpwdgrp/getpwuid.c')
-rw-r--r--libpwdgrp/getpwuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/getpwuid.c b/libpwdgrp/getpwuid.c
index 7a04b67ca..bae6e15e6 100644
--- a/libpwdgrp/getpwuid.c
+++ b/libpwdgrp/getpwuid.c
@@ -30,7 +30,7 @@ struct passwd *getpwuid(uid_t uid)
int passwd_fd;
struct passwd *passwd;
- if ((passwd_fd = open("/etc/passwd", O_RDONLY)) < 0)
+ if ((passwd_fd = open(bb_path_passwd_file, O_RDONLY)) < 0)
return NULL;
while ((passwd = __getpwent(passwd_fd)) != NULL)