Home | History | Annotate | Download | only in revnetgroup

Lines Matching defs:cur

126 	struct group_entry *cur;
128 cur = table[hashkey(key)];
130 while (cur) {
131 if (!strcmp(cur->key, key))
132 return(cur->data);
133 cur = cur->next;
189 struct member_entry *cur, *new;
194 cur = table[i];
201 while (cur) {
202 if (!strcmp(cur->key, key) && !strcmp(cur->domain,domain)) {
203 p = cur->groups;
212 tmp->next = cur->groups;
213 cur->groups = tmp;
216 cur = cur->next;