about summary refs log tree commit diff
path: root/src/nix/copy.cc
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2016-09-02T10·35-0400
committerShea Levy <shea@shealevy.com>2016-09-02T10·35-0400
commita91954f0c658e90b08f7f6e371305281e4d7d329 (patch)
tree6d7c3b6b61515e667bc34df8cd3e2cc152fd0ae4 /src/nix/copy.cc
parent87b189c2b326c790a35ff53a2d825c1ef48f644e (diff)
Merge openStore and openStoreAt with default arguments
Diffstat (limited to 'src/nix/copy.cc')
-rw-r--r--src/nix/copy.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/copy.cc b/src/nix/copy.cc
index de306cbf91d9..e8317dc393fd 100644
--- a/src/nix/copy.cc
+++ b/src/nix/copy.cc
@@ -43,8 +43,8 @@ struct CmdCopy : StorePathsCommand
         if (srcUri.empty() && dstUri.empty())
             throw UsageError("you must pass ‘--from’ and/or ‘--to’");
 
-        ref<Store> srcStore = srcUri.empty() ? store : openStoreAt(srcUri);
-        ref<Store> dstStore = dstUri.empty() ? store : openStoreAt(dstUri);
+        ref<Store> srcStore = srcUri.empty() ? store : openStore(srcUri);
+        ref<Store> dstStore = dstUri.empty() ? store : openStore(dstUri);
 
         std::string copiedLabel = "copied";