about summary refs log tree commit diff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 7c8db745cbd8..a83ba55e2b3e 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -240,7 +240,7 @@ void LocalStore::appendReferrer(const Path & from, const Path & to, bool lock)
     string s = " " + to;
     writeFull(fd, (const unsigned char *) s.c_str(), s.size());
 
-    if (doFsync) fdatasync(fd);
+    if (doFsync) fsync(fd);
 }
 
 
@@ -271,7 +271,7 @@ void LocalStore::rewriteReferrers(const Path & path, bool purge, PathSet referre
     
     writeFull(fd, (const unsigned char *) s.c_str(), s.size());
 
-    if (doFsync) fdatasync(fd);
+    if (doFsync) fsync(fd);
     
     fd.close(); /* for Windows; can't rename open file */