add put*ent functions for passwd/group files and similar for shadow
authorRich Felker <dalias@aerifal.cx>
Thu, 4 Apr 2013 23:23:47 +0000 (19:23 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 4 Apr 2013 23:23:47 +0000 (19:23 -0400)
commitddfb267b0e72499f6022981733264a063ec881f0
tree854193fad4a1c8ba4dac7816a4bac90e16f15654
parent771c6cead0684487a0699750ff740e3d3894200a
add put*ent functions for passwd/group files and similar for shadow

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.
include/grp.h
include/pwd.h
src/passwd/fgetspent.c [new file with mode: 0644]
src/passwd/putgrent.c [new file with mode: 0644]
src/passwd/putpwent.c [new file with mode: 0644]