diff --git a/src/config.cpp b/src/config.cpp index 1b14781..8c2d466 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -372,7 +372,7 @@ std::pair CConfig::configSetValueSafe(const std::string& com if (VALUEIT != sc->values.end()) found = true; else if (sc->descriptor->dontErrorOnMissing) - return {true, result}; // will return a success, cuz we want to ignore missing + return {false, result}; // will return a success, cuz we want to ignore missing break; }