aboutsummaryrefslogtreecommitdiff
path: root/src/nix-worker
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-worker')
-rw-r--r--src/nix-worker/nix-worker.cc4
1 files changed, 4 insertions, 0 deletions
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;