Home
last modified time | relevance | path

Searched refs:to_fd (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/ucbcmd/install.d/
H A Dinstall.c189 int to_fd; local
232 if ((to_fd = open(path, O_CREAT|O_WRONLY|O_TRUNC, 0)) < 0) {
236 if (fchmod(to_fd, mode)) {
239 close(to_fd);
243 status = copy(from, to_fd, path); /* copy */
244 close(to_fd);
266 copy(from_name, to_fd, to_name) in copy() argument
267 int to_fd; in copy()
279 if (write(to_fd, buf, n) != n) {