summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-01-11 19:00:04 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2017-01-11 19:00:04 +0100
commit08c62ae2fa9378732588ef7b9a9120b377d26d1e (patch)
tree6c4b687f9ec73397be1f3be08f7df191ab2d6542 /lib
parent917225203ff8047ae91e03ac4fc6fc320f37f1ce (diff)
parentfa9cc22e29faf24a70a4771a71f93e8a17045524 (diff)
downloadbarebox-08c62ae2fa9378732588ef7b9a9120b377d26d1e.tar.gz
barebox-08c62ae2fa9378732588ef7b9a9120b377d26d1e.tar.xz
Merge branch 'for-next/truncate'
Diffstat (limited to 'lib')
-rw-r--r--lib/libfile.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/lib/libfile.c b/lib/libfile.c
index cba2f02a23..049ec32d77 100644
--- a/lib/libfile.c
+++ b/lib/libfile.c
@@ -263,9 +263,10 @@ int copy_file(const char *src, const char *dst, int verbose)
int srcfd = 0, dstfd = 0;
int r, w;
int ret = 1, err1 = 0;
+ int mode;
void *buf;
int total = 0;
- struct stat statbuf;
+ struct stat srcstat, dststat;
rw_buf = xmalloc(RW_BUF_SIZE);
@@ -275,17 +276,26 @@ int copy_file(const char *src, const char *dst, int verbose)
goto out;
}
- dstfd = open(dst, O_WRONLY | O_CREAT | O_TRUNC);
+ ret = stat(dst, &dststat);
+ if (ret)
+ goto out;
+
+ mode = O_WRONLY | O_CREAT;
+
+ if (S_ISREG(dststat.st_mode))
+ mode |= O_TRUNC;
+
+ dstfd = open(dst, mode);
if (dstfd < 0) {
printf("could not open %s: %s\n", dst, errno_str());
goto out;
}
if (verbose) {
- if (stat(src, &statbuf) < 0)
- statbuf.st_size = 0;
+ if (stat(src, &srcstat) < 0)
+ srcstat.st_size = 0;
- init_progression_bar(statbuf.st_size);
+ init_progression_bar(srcstat.st_size);
}
while (1) {
@@ -310,7 +320,7 @@ int copy_file(const char *src, const char *dst, int verbose)
}
if (verbose) {
- if (statbuf.st_size && statbuf.st_size != FILESIZE_MAX)
+ if (srcstat.st_size && srcstat.st_size != FILESIZE_MAX)
show_progress(total);
else
show_progress(total / 16384);