about summary refs log tree commit diff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2016-09-02T18·15-0400
committerShea Levy <shea@shealevy.com>2016-09-02T18·15-0400
commit0f3963329018d9cf930e2a0e2b0ec2f4e26b40b3 (patch)
tree2c65d993ae9407d405255f9a4f0866ade165194d /src/libstore/local-store.cc
parent7d4ccd9b17ca902438e7045e4ce950525ed554b6 (diff)
Factor out the unix domain socket-specific code from RemoteStore
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 10056f2f1fd8..272d48741114 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -37,7 +37,8 @@ namespace nix {
 
 
 LocalStore::LocalStore(const Params & params)
-    : LocalFSStore(params)
+    : Store(params)
+    , LocalFSStore(params)
     , realStoreDir(get(params, "real", rootDir != "" ? rootDir + "/nix/store" : storeDir))
     , dbDir(stateDir + "/db")
     , linksDir(realStoreDir + "/.links")