Lines Matching refs:dest_file
46 static void file_copy(char *src_file, char *dest_file);
61 file_copy(char *src_file, char *dest_file)
74 if ((dest_fd = open(dest_file, O_CREAT|O_WRONLY|O_TRUNC, 0755)) == -1) {
76 "(%d): %s\n", dest_file, errno, strerror(errno));
91 (void) printf("%s installed as %s\n", src_file, dest_file);
167 char dest_file[MAXPATHLEN];
223 (void) strlcpy(dest_file, ins_file, MAXPATHLEN);
226 (void) strcat(strcat(strcpy(dest_file, dirb), "/"),
228 file_copy(ins_file, dest_file);
232 chown_file(dest_file, group, owner);
236 if (chmod(dest_file, mode) == -1) {
240 dest_file, mode, errno, strerror(errno));