diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-10-10 07:34:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-10-10 07:34:27 +0000 |
commit | 56104838733c81ba410ac41f767ac72267049489 (patch) | |
tree | 54057d78cdae893235b86787a735629396d857a5 /libc/pwd_grp/Makefile | |
parent | 61011662018fa98c4610c1ae826e417678cd5c80 (diff) |
Implement getgrgid_r and getgrnam_r. Rework group handling code to be fully
reentrant, since there was still a shared static value. indent stuff,
Diffstat (limited to 'libc/pwd_grp/Makefile')
-rw-r--r-- | libc/pwd_grp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/pwd_grp/Makefile b/libc/pwd_grp/Makefile index c34142d6b..06ba857f0 100644 --- a/libc/pwd_grp/Makefile +++ b/libc/pwd_grp/Makefile @@ -25,7 +25,7 @@ TOPDIR=../../ include $(TOPDIR)Rules.mak CSRC= pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c fgetpwent.c \ - __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \ + __getgrent_r.c grent.c getgrnam.c getgrgid.c fgetgrent.c \ initgroups.c __getpwent_r.c ifeq ($(HAS_SHADOW),y) @@ -49,7 +49,7 @@ $(COBJS): %.o : %.c $(OBJ): Makefile -__getgrent.c: config.h +__getgrent_r.c: config.h initgroups.c: config.h clean: |