Lines Matching refs:group
59 static struct grouplist *grouplist; /* stores a list of users in a group */
87 my_getgroup(group)
88 char *group;
91 doit(group, (struct list *) NULL);
100 * recursive function to find the members of netgroup "group". "list" is
104 doit(group, list)
105 char *group;
118 if ((val = match(group)) == NULL) {
127 if (strcmp(ls->name, group) == 0) {
130 group);
137 ls->name = group;
176 (void) fprintf(stderr, "--- %s %s\n", group, val);
245 match(group)
246 char *group;
248 return (lookup(ngtable, group));