diff options
author | Shea Levy <shea@shealevy.com> | 2016-09-02 06:35:48 -0400 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2016-09-02 06:35:48 -0400 |
commit | a91954f0c658e90b08f7f6e371305281e4d7d329 (patch) | |
tree | 6d7c3b6b61515e667bc34df8cd3e2cc152fd0ae4 /src/nix/verify.cc | |
parent | 87b189c2b326c790a35ff53a2d825c1ef48f644e (diff) |
Merge openStore and openStoreAt with default arguments
Diffstat (limited to 'src/nix/verify.cc')
-rw-r--r-- | src/nix/verify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/verify.cc b/src/nix/verify.cc index f2b6acdfb..519fcb6f8 100644 --- a/src/nix/verify.cc +++ b/src/nix/verify.cc @@ -52,7 +52,7 @@ struct CmdVerify : StorePathsCommand { std::vector<ref<Store>> substituters; for (auto & s : substituterUris) - substituters.push_back(openStoreAt(s)); + substituters.push_back(openStore(s)); auto publicKeys = getDefaultPublicKeys(); |