diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-08-25 23:12:11 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-08-25 23:12:11 +0000 |
commit | 6363f5c76f236303c13e714d451ccd2b1208ebca (patch) | |
tree | 2e881b4c870fc1d20f5d684d9952c72f3ddc9574 /src/libstddjb/hiercopy_tmp.c | |
parent | 65d71ab4b780a5d18a8146eb4567eb8a9105f4fe (diff) | |
download | skalibs-6363f5c76f236303c13e714d451ccd2b1208ebca.tar.xz |
Add touch, filecopy_unsafe, filecopy_suffix
Diffstat (limited to 'src/libstddjb/hiercopy_tmp.c')
-rw-r--r-- | src/libstddjb/hiercopy_tmp.c | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/src/libstddjb/hiercopy_tmp.c b/src/libstddjb/hiercopy_tmp.c index ce2282f..bcff2b2 100644 --- a/src/libstddjb/hiercopy_tmp.c +++ b/src/libstddjb/hiercopy_tmp.c @@ -11,32 +11,6 @@ #include <skalibs/direntry.h> #include <skalibs/djbunix.h> -static int filecopy (char const *src, char const *dst, mode_t mode) -{ - int d ; - int s = open_readb(src) ; - if (s < 0) return 0 ; - d = open3(dst, O_WRONLY | O_CREAT | O_TRUNC, mode) ; - if (d < 0) - { - fd_close(s) ; - return 0 ; - } - if (fd_cat(s, d) < 0) goto err ; - fd_close(s) ; - fd_close(d) ; - return 1 ; - -err: - { - register int e = errno ; - fd_close(s) ; - fd_close(d) ; - errno = e ; - } - return 0 ; -} - static int dircopy (char const *src, char const *dst, mode_t mode, stralloc *tmp) { unsigned int tmpbase = tmp->len ; @@ -108,7 +82,7 @@ int hiercopy_tmp (char const *src, char const *dst, stralloc *tmp) if (lstat(src, &st) < 0) return 0 ; if (S_ISREG(st.st_mode)) { - if (!filecopy(src, dst, st.st_mode)) return 0 ; + if (!filecopy_unsafe(src, dst, st.st_mode)) return 0 ; } else if (S_ISDIR(st.st_mode)) { |