diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-03-26T18·00+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-03-26T18·00+0200 |
commit | 8be1979f1ae4b85c36988f7b3cf8240c9682dc54 (patch) | |
tree | 80ec98cfb3ec5a86b72a9ee9f07d3ede4ee36b3c /src/nix-worker/nix-worker.cc | |
parent | 19d9762ad5fc8d8db3e9a545a89309f08572cc9f (diff) |
Remove the --max-links GC option
We don't need this anymore now that current filesystems support more than 32,000 files in a directory.
Diffstat (limited to 'src/nix-worker/nix-worker.cc')
-rw-r--r-- | src/nix-worker/nix-worker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index f5201ab6a561..a952523504c5 100644 --- a/src/nix-worker/nix-worker.cc +++ b/src/nix-worker/nix-worker.cc @@ -477,7 +477,7 @@ static void performOp(unsigned int clientVersion, options.pathsToDelete = readStorePaths<PathSet>(from); options.ignoreLiveness = readInt(from); options.maxFreed = readLongLong(from); - options.maxLinks = readInt(from); + readInt(from); // obsolete field if (GET_PROTOCOL_MINOR(clientVersion) >= 5) { /* removed options */ readInt(from); |