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/initgroups.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/pwd_grp/initgroups.c') diff --git a/libc/pwd_grp/initgroups.c b/libc/pwd_grp/initgroups.c index 04de22632..87a6b569d 100644 --- a/libc/pwd_grp/initgroups.c +++ b/libc/pwd_grp/initgroups.c @@ -22,6 +22,7 @@ #include #include #include +#include #include "config.h" int initgroups(__const char *user, gid_t gid) @@ -38,7 +39,7 @@ int initgroups(__const char *user, gid_t gid) int grp_fd; - if ((grp_fd = open("/etc/group", O_RDONLY)) < 0) + if ((grp_fd = open(_PATH_GROUP, O_RDONLY)) < 0) return -1; num_groups = 0; -- cgit v1.2.3