diff options
Diffstat (limited to 'libpwdgrp/grent.c')
-rw-r--r-- | libpwdgrp/grent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/grent.c b/libpwdgrp/grent.c index df91955..609ed1a 100644 --- a/libpwdgrp/grent.c +++ b/libpwdgrp/grent.c @@ -36,7 +36,7 @@ void setgrent(void) { if (grp_fd != -1) close(grp_fd); - grp_fd = open("/etc/group", O_RDONLY); + grp_fd = open(bb_path_group_file, O_RDONLY); } void endgrent(void) |