diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-24T15·46+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-24T15·46+0000 |
commit | 84a4dd5ff08ceb7894d8dce662265d7d188e615c (patch) | |
tree | 8a87f32a5cf2ae54d0e8dc448efa4b8536e21482 /src/libstore | |
parent | 7db2831d3a76bc239bb7a9f7573152ce12413c29 (diff) |
* Don't use fdatasync since it doesn't work on Snow Leopard.
* Don't refer to config.h in util.hh, because config.h is not installed (http://hydra.nixos.org/build/303053).
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/local-store.cc | 4 |
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 */ |