aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/config.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-11-21 18:50:56 +0100
committerEelco Dolstra <edolstra@gmail.com>2017-11-21 18:50:56 +0100
commit6cdaa858d03b9c24f54f8157026cebaa02d9ac8a (patch)
treeec968c3d42d81f4154e8dcd2bdbadcdae84f2434 /src/libutil/config.cc
parent7536fe31dd8c162026d517521dc49b5d9286bfb1 (diff)
Propagate flags like --sandbox to the daemon properly
Diffstat (limited to 'src/libutil/config.cc')
-rw-r--r--src/libutil/config.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libutil/config.cc b/src/libutil/config.cc
index 14c4cca03..d46ca65a3 100644
--- a/src/libutil/config.cc
+++ b/src/libutil/config.cc
@@ -152,7 +152,7 @@ void BaseSetting<T>::convertToArg(Args & args, const std::string & category)
.longName(name)
.description(description)
.arity(1)
- .handler([=](std::vector<std::string> ss) { set(ss[0]); })
+ .handler([=](std::vector<std::string> ss) { overriden = true; set(ss[0]); })
.category(category);
}
@@ -201,12 +201,12 @@ template<> void BaseSetting<bool>::convertToArg(Args & args, const std::string &
args.mkFlag()
.longName(name)
.description(description)
- .handler([=](std::vector<std::string> ss) { value = true; })
+ .handler([=](std::vector<std::string> ss) { override(true); })
.category(category);
args.mkFlag()
.longName("no-" + name)
.description(description)
- .handler([=](std::vector<std::string> ss) { value = false; })
+ .handler([=](std::vector<std::string> ss) { override(false); })
.category(category);
}