From 6cdaa858d03b9c24f54f8157026cebaa02d9ac8a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 21 Nov 2017 18:50:56 +0100 Subject: Propagate flags like --sandbox to the daemon properly --- src/libutil/config.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libutil/config.cc') 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::convertToArg(Args & args, const std::string & category) .longName(name) .description(description) .arity(1) - .handler([=](std::vector ss) { set(ss[0]); }) + .handler([=](std::vector ss) { overriden = true; set(ss[0]); }) .category(category); } @@ -201,12 +201,12 @@ template<> void BaseSetting::convertToArg(Args & args, const std::string & args.mkFlag() .longName(name) .description(description) - .handler([=](std::vector ss) { value = true; }) + .handler([=](std::vector ss) { override(true); }) .category(category); args.mkFlag() .longName("no-" + name) .description(description) - .handler([=](std::vector ss) { value = false; }) + .handler([=](std::vector ss) { override(false); }) .category(category); } -- cgit v1.2.3