diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-12-16T12·23+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-12-16T12·23+0000 |
commit | 60ec75048ae0e0bc72ea2fe47e8b48fcf40a2b86 (patch) | |
tree | 62eae8ecd36cf56fe4f5c3aa5a62c1113ee45c76 /src/libstore/remote-store.cc | |
parent | 6f6bb1fdea9dcd4c6f6c0b8059b05d56ea7c16f3 (diff) |
* Pass --use-atime / --max-atime to the daemon.
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index 585e6bd9c7cd..d892e3e62bfa 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -426,6 +426,10 @@ void RemoteStore::collectGarbage(const GCOptions & options, GCResults & results) writeInt(options.ignoreLiveness, to); writeLongLong(options.maxFreed, to); writeInt(options.maxLinks, to); + if (GET_PROTOCOL_MINOR(daemonVersion) >= 5) { + writeInt(options.useAtime, to); + writeInt(options.maxAtime, to); + } processStderr(); |