Lines Matching refs:e
139 retval += compare_passwd_field (i, e, p->f, e->f, #f)
144 compare_passwds (int i, struct passwd *p, struct passwd *e) in compare_passwds() argument
149 if (p->pw_uid != e->pw_uid) in compare_passwds()
152 e->pw_uid, e->pw_name, in compare_passwds()
158 if (p->pw_gid != e->pw_gid) in compare_passwds()
161 e->pw_uid, e->pw_name, in compare_passwds()
162 p->pw_gid, e->pw_gid); in compare_passwds()
176 print_passwd (e); in compare_passwds()
202 compare_groups (int i, struct group *g, struct group *e) in compare_groups() argument
208 if (g->gr_gid != e->gr_gid) in compare_groups()
211 e->gr_gid, e->gr_name, in compare_groups()
220 e->gr_gid, e->gr_name); in compare_groups()
224 else if (e->gr_name == NULL) in compare_groups()
227 e->gr_gid, g->gr_name); in compare_groups()
231 else if (strcmp (g->gr_name, e->gr_name) != 0) in compare_groups()
234 e->gr_gid, e->gr_name, in compare_groups()
240 if (g->gr_passwd == NULL && e->gr_passwd != NULL) in compare_groups()
243 e->gr_gid, e->gr_name); in compare_groups()
246 else if (g->gr_passwd != NULL && e->gr_passwd == NULL) in compare_groups()
249 e->gr_gid, e->gr_name); in compare_groups()
253 else if (g->gr_passwd && strcmp (g->gr_passwd, e->gr_passwd) != 0) in compare_groups()
256 e->gr_gid, e->gr_name, in compare_groups()
257 g->gr_passwd, e->gr_passwd); in compare_groups()
263 if (e->gr_mem != NULL && g->gr_mem == NULL) in compare_groups()
266 e->gr_gid, e->gr_name); in compare_groups()
269 else if (e->gr_mem == NULL && g->gr_mem != NULL) in compare_groups()
272 e->gr_gid, e->gr_name); in compare_groups()
275 else if (e->gr_mem == NULL && g->gr_mem == NULL) in compare_groups()
285 if (g->gr_mem[j] == NULL && e->gr_mem[j] == NULL) in compare_groups()
293 e->gr_gid, e->gr_name); in compare_groups()
297 if (e->gr_mem[j] == NULL) in compare_groups()
300 e->gr_gid, e->gr_name); in compare_groups()
304 if (strcmp (g->gr_mem[j], e->gr_mem[j]) != 0) in compare_groups()
307 e->gr_gid, e->gr_name, in compare_groups()
308 e->gr_mem[j], g->gr_mem[j]); in compare_groups()
320 print_group (e); in compare_groups()