summaryrefslogtreecommitdiffstats
path: root/libc/pwd_grp/__getgrent_r.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix things (properly) to open /etc/passd and /etc/group ifEric Andersen2003-11-011-3/+0
| | | | | | | they have not yet been opened. My last try was completely and embarrasingly broken. -Erik
* getpwent(), getpwent_r(), and getgrent(), getgrent_r() would allEric Andersen2003-10-311-0/+3
| | | | | | fail if you had not previously called setpwent() or setgrent() respectively. Oops. My bad. -Erik
* Implement getgrgid_r and getgrnam_r. Rework group handling code to be fullyEric Andersen2003-10-101-0/+114
reentrant, since there was still a shared static value. indent stuff,