Lines Matching refs:group
87 static void storegroup(char *group, struct grouplist *glist, int byuser);
88 static void enter(char *name, char *group);
89 static void appendgroup(groupentrylist grlist, char *group);
90 static groupentrylist newentry(char *name, char *group);
99 char *group;
114 while (group = nextgroup()) {
115 glist = my_getgroup(group);
116 storegroup(group, glist, byuser);
131 char *group;
139 group = cur->key;
141 return (group);
182 storegroup(char *group, struct grouplist *glist, int byuser)
202 enter(key, group);
209 newentry(char *name, char *group)
218 new->groups->str = group;
226 appendgroup(groupentrylist grlist, char *group)
231 if (strcmp(group, cur->str) == 0) {
237 cur->str = group;
242 enter(char *name, char *group)
250 grouptable[key] = newentry(name, group);
258 appendgroup(gel, group);
260 gelprev->next = newentry(name, group);
273 char *group;
291 STRCPY(group, buf);
293 store(ngtable, group, line);