about summary refs log tree commit diff
path: root/src/nix-worker/nix-worker.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-worker/nix-worker.cc')
-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 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;