Lines Matching refs:ept1
66 static int ckdup(struct cfent *ept1, struct cfent *ept2);
553 struct cfent *ept1, *ept2; in dup_merg() local
555 ept1 = &(ext1->cf_ent); in dup_merg()
558 if (strchr("?dx", ept1->ftype)) in dup_merg()
583 (void) memcpy(ept2, ept1, sizeof (struct cfent)); in dup_merg()
597 ept2->pinfo = ept1->pinfo; in dup_merg()
610 ckdup(struct cfent *ept1, struct cfent *ept2) in ckdup() argument
614 if (!strchr("?dx", ept1->ftype)) in ckdup()
621 ept2->ainfo.mode = ept1->ainfo.mode; in ckdup()
622 if ((ept1->ainfo.mode != ept2->ainfo.mode) && in ckdup()
623 (ept1->ainfo.mode != BADMODE)) in ckdup()
627 (void) strlcpy(ept2->ainfo.owner, ept1->ainfo.owner, in ckdup()
629 if (strcmp(ept1->ainfo.owner, ept2->ainfo.owner) && in ckdup()
630 strcmp(ept1->ainfo.owner, "?")) in ckdup()
634 (void) strlcpy(ept2->ainfo.group, ept1->ainfo.group, in ckdup()
636 if (strcmp(ept1->ainfo.group, ept2->ainfo.group) && in ckdup()
637 strcmp(ept1->ainfo.group, "?")) in ckdup()
640 if (ept1->pinfo) { in ckdup()
641 ept2->npkgs = ept1->npkgs; in ckdup()
642 ept2->pinfo = ept1->pinfo; in ckdup()