aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getgrent_r.c
blob: 6bb9667cca62dbdc4736e7da93d768a5d0d7a1ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 
 * static int
 * wrap_getgrent_r(struct group *gbuf, char *buf, size_t buflen, struct group **gbufp) {
 *	int rc = -1;
 */

	/* note that we don't wrap fgetgrent_r, since there's no path
	 * references in it.
	 */
	rc = fgetgrent_r(pseudo_grp, gbuf, buf, buflen, gbufp);
	if (rc == 0 && *gbufp) {
		if (*gbufp == gbuf) {
			pseudo_debug(1, "found group: %d/%s\n", gbuf->gr_gid, gbuf->gr_name);
		} else {
			pseudo_debug(1, "found group, but it's wrong?");
		}
	}

/*	return rc;
 * }
 */