summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'data.c')
-rw-r--r--data.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/data.c b/data.c
index e621eb2..19b8a0a 100644
--- a/data.c
+++ b/data.c
@@ -388,6 +388,12 @@ int object_add(const char *id, d_char *obj)
xs *fn = _object_fn(id);
FILE *f;
+ if (mtime(fn) > 0.0) {
+ /* object already here */
+ srv_debug(0, xs_fmt("object_add object already here %s", id));
+ return 204; /* No content */
+ }
+
if ((f = fopen(fn, "w")) != NULL) {
flock(fileno(f), LOCK_EX);