diff options
author | Marwan Aljubeh <marwan.aljubeh@gmail.com> | 2020-09-21 17:29:08 +0100 |
---|---|---|
committer | Marwan Aljubeh <marwan.aljubeh@gmail.com> | 2020-09-21 17:29:08 +0100 |
commit | f80ffeb8c9291f7168f098fdaadc15408492f3c2 (patch) | |
tree | 3362bfdcac7edd963e7337a9e5c1221066f75a8f /src/libstore/local-store.cc | |
parent | 4e1a04733d5075fdc09dbc6767755d4487e96da7 (diff) |
Update the variable name accordingly
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
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 != "/") { |