Lines Matching defs:groups
49 * comma-separated, newline-terminated list of groups to which the
52 * Exception: Groups to which everyone belongs (universal groups) will
53 * not be included in the list. The universal groups will be listed under
56 * Thus to find out all the groups that user "foo" of domain "bar" is in,
57 * lookup the groups under foo.bar, foo.*, *.bar and *.*.
73 /* Stores a list of (name,list-of-groups) */
77 stringlist groups;
154 stringlist groups;
161 for (groups = entry->groups; groups;
162 groups = groups->next) {
163 fputs(groups->str, stdout);
164 if (groups->next) {
217 new->groups = MALLOC(stringnode);
218 new->groups->str = group;
219 new->groups->next = NULL;
230 for (cur = grlist->groups; cur; prev = cur, cur = cur->next) {