1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-17 07:52:43 +01:00

* Pass --use-atime / --max-atime to the daemon.

This commit is contained in:
Eelco Dolstra 2008-12-16 12:23:35 +00:00
parent 6f6bb1fdea
commit 60ec75048a
3 changed files with 9 additions and 1 deletions

View file

@ -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();