aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
authorMarwan Aljubeh <marwan.aljubeh@gmail.com>2020-09-21 17:29:08 +0100
committerMarwan Aljubeh <marwan.aljubeh@gmail.com>2020-09-21 17:29:08 +0100
commitf80ffeb8c9291f7168f098fdaadc15408492f3c2 (patch)
tree3362bfdcac7edd963e7337a9e5c1221066f75a8f /src/libstore/local-store.cc
parent4e1a04733d5075fdc09dbc6767755d4487e96da7 (diff)
Update the variable name accordingly
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 24b9ea7bd..cc9fcfe6e 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -109,7 +109,7 @@ LocalStore::LocalStore(const Params & params)
}
/* Ensure that the store and its parents are not symlinks. */
- if (!settings.ignoreSymlinkStore) {
+ if (!settings.allowSymlinkedStore) {
Path path = realStoreDir;
struct stat st;
while (path != "/") {