Home
last modified time | relevance | path

Searched refs:ggroups (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/openbsm/bin/auditdistd/
H A Dsandbox.c79 gid_t *groups, *ggroups; in sandbox() local
88 ggroups = NULL; in sandbox()
210 ggroups = malloc(sizeof(ggroups[0]) * ngroups); in sandbox()
211 if (ggroups == NULL) { in sandbox()
216 PJDLOG_VERIFY(getgroups(ngroups, ggroups) == ngroups); in sandbox()
218 qsort(ggroups, (size_t)ngroups, sizeof(ggroups[0]), groups_compare); in sandbox()
219 PJDLOG_VERIFY(bcmp(groups, ggroups, sizeof(groups[0]) * ngroups) == 0); in sandbox()
229 if (ggroups != NULL) in sandbox()
230 free(ggroups); in sandbox()