Switch to unified view

a/src/upmpdutils.cxx b/src/upmpdutils.cxx
...
...
394
        }
394
        }
395
    }
395
    }
396
    return true;
396
    return true;
397
}
397
}
398
398
399
bool configBool(ConfSimple *conf, const std::string& nm)
399
bool configBool(ConfSimple *conf, const std::string& nm, bool dflt)
400
{
400
{
401
    string val;
401
    string val;
402
    if (conf && conf->get(nm, val)) {
402
    if (conf && conf->get(nm, val)) {
403
        return stringToBool(val);
403
        return stringToBool(val);
404
    }
404
    }
405
    return false;
405
    return dflt;
406
}
406
}