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/getgrgid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/pwd_grp/getgrgid.c') diff --git a/libc/pwd_grp/getgrgid.c b/libc/pwd_grp/getgrgid.c index 70e7152ce..f41e305ef 100644 --- a/libc/pwd_grp/getgrgid.c +++ b/libc/pwd_grp/getgrgid.c @@ -22,6 +22,7 @@ #include #include #include +#include #include "config.h" struct group *getgrgid(const gid_t gid) @@ -29,7 +30,7 @@ struct group *getgrgid(const gid_t gid) struct group *group; int grp_fd; - if ((grp_fd = open("/etc/group", O_RDONLY)) < 0) + if ((grp_fd = open(_PATH_GROUP, O_RDONLY)) < 0) return NULL; while ((group = __getgrent(grp_fd)) != NULL) -- cgit v1.2.3