From 60ec75048ae0e0bc72ea2fe47e8b48fcf40a2b86 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 16 Dec 2008 12:23:35 +0000 Subject: * Pass --use-atime / --max-atime to the daemon. --- src/nix-worker/nix-worker.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/nix-worker') diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index 674aae0b1..f0f821bdd 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; -- cgit v1.2.3