Switch to side-by-side view
--- a/src/upmpdutils.cxx +++ b/src/upmpdutils.cxx @@ -396,11 +396,11 @@ return true; } -bool configBool(ConfSimple *conf, const std::string& nm) +bool configBool(ConfSimple *conf, const std::string& nm, bool dflt) { string val; if (conf && conf->get(nm, val)) { return stringToBool(val); } - return false; -} + return dflt; +}