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/nix-worker | |
parent | 6f6bb1fdea9dcd4c6f6c0b8059b05d56ea7c16f3 (diff) |
* Pass --use-atime / --max-atime to the daemon.
Diffstat (limited to 'src/nix-worker')
-rw-r--r-- | src/nix-worker/nix-worker.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index 674aae0b10fe..f0f821bdd750 100644 --- a/src/nix-worker/nix-worker.cc +++ b/src/nix-worker/nix-worker.cc @@ -452,6 +452,10 @@ static void performOp(unsigned int clientVersion, options.ignoreLiveness = readInt(from); options.maxFreed = readLongLong(from); options.maxLinks = readInt(from); + if (GET_PROTOCOL_MINOR(clientVersion) >= 5) { + options.useAtime = readInt(from); + options.maxAtime = readInt(from); + } GCResults results; |