summaryrefslogtreecommitdiff
path: root/src/passwd/putpwent.c
AgeCommit message (Collapse)AuthorLines
2019-05-16fix format strings for uid/gid values in putpwent/putgrentRich Felker-1/+1
commit 648c3b4e18b2ce2b6af7d44783e42ca267ea49f5 omitted this change, which is needed to be able to use uid/gid values greater than INT_MAX with these interfaces. it fixes alpine linux bug #10460.
2013-12-12include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy-0/+1
2013-04-04add put*ent functions for passwd/group files and similar for shadowRich Felker-0/+9
since shadow does not yet support enumeration (getspent), the corresponding FILE-based get and put versions are also subbed out for now. this is partly out of laziness and partly because it's not clear how they should work in the presence of TCB shadow files. the stubs should make it possible to compile some software that expects them to exist, but such software still may not work properly.