ofd               477 source3/modules/vfs_default.c 	int ofd = -1;
ofd               492 source3/modules/vfs_default.c 	if((ofd = sys_open (dest, O_WRONLY | O_CREAT | O_TRUNC | O_NOFOLLOW, 0600)) < 0 )
ofd               494 source3/modules/vfs_default.c 	if((ofd = sys_open (dest, O_WRONLY | O_CREAT | O_TRUNC , 0600)) < 0 )
ofd               498 source3/modules/vfs_default.c 	if (transfer_file(ifd, ofd, (size_t)-1) == -1)
ofd               507 source3/modules/vfs_default.c 	if ((fchown(ofd, source_stats.st_uid, source_stats.st_gid) == -1) && (errno != EPERM))
ofd               519 source3/modules/vfs_default.c 	if (fchmod (ofd, source_stats.st_mode & 07777))
ofd               528 source3/modules/vfs_default.c 	if (close (ofd) == -1)
ofd               550 source3/modules/vfs_default.c 	if (ofd != -1)
ofd               551 source3/modules/vfs_default.c 		close(ofd);