mailing list of musl libc
 help / color / mirror / code / Atom feed
d7847b15dbb112339b0ff2bead939fb9b612ddcc blob 338 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 
#include <grp.h>
#include <stdio.h>

int putgrent(const struct group *gr, FILE *f)
{
	int r;
	size_t i;
	flockfile(f);
	r = fprintf(f, "%s:%s:%d:", gr->gr_name, gr->gr_passwd, gr->gr_gid);
	if (gr->gr_mem) for (i=0; gr->gr_mem[i]; i++)
		if (fprintf(f, "%s%s", i?",":"", gr->gr_mem[i])<0) r = -1;
	funlockfile(f);
	return r<0 ? -1 : 0;
}
debug log:

solving d7847b1 ...
found d7847b1 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).