about summary refs log tree commit diff
path: root/src/nix-worker/nix-worker.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11T14·49-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11T14·49-0400
commit667d5f1936616dc829f9f92f8e5d5141ba5285a7 (patch)
tree39af0936583fc6a70ffe039d93e4e6a3fcd99b2d /src/nix-worker/nix-worker.cc
parenteb3036da87659fe7cf384c2362e7f7b8b67189a1 (diff)
Rename queryValidPaths() to queryAllValidPaths()
Diffstat (limited to 'src/nix-worker/nix-worker.cc')
-rw-r--r--src/nix-worker/nix-worker.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc
index c4a42de12f..e786318ad4 100644
--- a/src/nix-worker/nix-worker.cc
+++ b/src/nix-worker/nix-worker.cc
@@ -563,9 +563,9 @@ static void performOp(unsigned int clientVersion,
         break;
     }
             
-    case wopQueryValidPaths: {
+    case wopQueryAllValidPaths: {
         startWork();
-        PathSet paths = store->queryValidPaths();
+        PathSet paths = store->queryAllValidPaths();
         stopWork();
         writeStrings(paths, to);
         break;