diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-11T14·49-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-11T14·49-0400 |
commit | 667d5f1936616dc829f9f92f8e5d5141ba5285a7 (patch) | |
tree | 39af0936583fc6a70ffe039d93e4e6a3fcd99b2d /src/libstore/remote-store.cc | |
parent | eb3036da87659fe7cf384c2362e7f7b8b67189a1 (diff) |
Rename queryValidPaths() to queryAllValidPaths()
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index 9579481c7eb5..04a9e28c9007 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -217,10 +217,10 @@ bool RemoteStore::isValidPath(const Path & path) } -PathSet RemoteStore::queryValidPaths() +PathSet RemoteStore::queryAllValidPaths() { openConnection(); - writeInt(wopQueryValidPaths, to); + writeInt(wopQueryAllValidPaths, to); processStderr(); return readStorePaths<PathSet>(from); } |