Lines Matching refs:newgr
517 struct group *newgr; in grcopy() local
519 newgr = (struct group *)(void *)dst; /* avoid alignment warning */ in grcopy()
520 dst += sizeof(*newgr); in grcopy()
522 newgr->gr_mem = (char **)(void *)(dst); /* avoid alignment warning */ in grcopy()
523 dst += (ndx + 1) * sizeof(*newgr->gr_mem); in grcopy()
525 newgr->gr_mem = NULL; in grcopy()
527 newgr->gr_name = dst; in grcopy()
530 newgr->gr_name = NULL; in grcopy()
532 newgr->gr_passwd = dst; in grcopy()
535 newgr->gr_passwd = NULL; in grcopy()
536 newgr->gr_gid = gr->gr_gid; in grcopy()
541 newgr->gr_mem[i] = dst; in grcopy()
547 newgr->gr_mem[i++] = dst; in grcopy()
551 if (newgr->gr_mem != NULL) in grcopy()
552 newgr->gr_mem[i] = NULL; in grcopy()
554 return (newgr); in grcopy()