aboutsummaryrefslogtreecommitdiff
path: root/client/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'client/file.c')
-rw-r--r--client/file.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/client/file.c b/client/file.c
index f24d3ca..581d4a7 100644
--- a/client/file.c
+++ b/client/file.c
@@ -56,9 +56,6 @@ append_file(const char *name, const void *data, size_t length)
int fd;
ssize_t status;
- if (access(name, F_OK) == 0)
- if (unlink(name) < 0)
- sysdie("unable to delete existing file %s", name);
fd = open(name, O_WRONLY | O_APPEND);
if (fd < 0)
sysdie("open of %s failed", name);