diff options
Diffstat (limited to 'libpwdgrp/getgrgid.c')
-rw-r--r-- | libpwdgrp/getgrgid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/getgrgid.c b/libpwdgrp/getgrgid.c index 7ffe8c5..0f5ce1c 100644 --- a/libpwdgrp/getgrgid.c +++ b/libpwdgrp/getgrgid.c @@ -33,7 +33,7 @@ struct group *getgrgid(const gid_t gid) if ((grp_fd = open(bb_path_group_file, O_RDONLY)) < 0) return NULL; - while ((group = __getgrent(grp_fd)) != NULL) + while ((group = bb_getgrent(grp_fd)) != NULL) if (group->gr_gid == gid) { close(grp_fd); return group; |