Lines Matching refs:f2
44 xcp(f1, f2) in xcp() argument
45 char *f1, *f2; in xcp()
55 if (DIRECTORY(f2)) {
56 (void) strcat(f2, "/");
57 (void) strcat(f2, BASENAME(f1, '/'));
59 DEBUG(4, "file name is %s\n", f2);
61 (void) strcpy(temp, f2);
73 temp_p = f2;
96 if (temp_p != f2) {
97 if (rename(temp_p, f2) != 0) {
115 xmv(f1, f2) in xmv() argument
116 register char *f1, *f2; in xmv()
121 if (stat(f2, &sbuf) == 0)
127 (void) unlink(f2); /* i'm convinced this is the right */
129 if ((ret = link(f1, f2)) < 0) {
131 ret = xcp(f1, f2);
197 uidxcp(f1, f2) in uidxcp() argument
198 char *f1, *f2; in uidxcp()
203 (void) strcpy(full, f2);
204 if (DIRECTORY(f2)) {