Searched defs:dest_file (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/tools/install.bin/
H A Dinstall.bin.c46 static void file_copy(char *src_file, char *dest_file);
61 file_copy(char *src_file, char *dest_file) argument
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]; local
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, grou
[all...]

Completed in 81 milliseconds