uclient-fetch: truncate output files (unless resuming)
authorFelix Fietkau <nbd@openwrt.org>
Sat, 23 Jan 2016 19:59:45 +0000 (20:59 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 23 Jan 2016 19:59:45 +0000 (20:59 +0100)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
uclient-fetch.c

index ebf49ae559ac395fbd069ab53c3d1e29da42f4be..851994f47b841668ca066a294e9268afff07a123 100644 (file)
@@ -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;