From caa8052ac55218a687593f3dcf30229016e48b0d Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 23 Jan 2016 20:59:45 +0100 Subject: [PATCH] uclient-fetch: truncate output files (unless resuming) Signed-off-by: Felix Fietkau --- uclient-fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uclient-fetch.c b/uclient-fetch.c index ebf49ae..851994f 100644 --- a/uclient-fetch.c +++ b/uclient-fetch.c @@ -103,7 +103,7 @@ static int open_output_file(const char *path, uint64_t resume_offset) if (cur_resume) flags = O_RDWR; else - flags = O_WRONLY; + flags = O_WRONLY | O_TRUNC; if (!cur_resume && !output_file) flags |= O_EXCL; -- 2.30.2