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/nix-store/nix-store.cc | |
parent | eb3036da87659fe7cf384c2362e7f7b8b67189a1 (diff) |
Rename queryValidPaths() to queryAllValidPaths()
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r-- | src/nix-store/nix-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 23863525fe8a..47c76693f1dc 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -465,7 +465,7 @@ static void opDumpDB(Strings opFlags, Strings opArgs) if (!opFlags.empty()) throw UsageError("unknown flag"); if (!opArgs.empty()) throw UsageError("no arguments expected"); - PathSet validPaths = store->queryValidPaths(); + PathSet validPaths = store->queryAllValidPaths(); foreach (PathSet::iterator, i, validPaths) cout << store->makeValidityRegistration(singleton<PathSet>(*i), true, true); } |