This is a fix to regression caused by:
224cafc56d2ffe16effb6ba3d230eb586ae8d595
In fact md_config_t::_get_val was lacking of proper normalize_key_name()
call.
Signed-off-by: Igor Fedotov <ifedotov@suse.com>
// In key names, leading and trailing whitespace are not significant.
string k(ConfFile::normalize_key_name(key));
- const Option *o = find_option(key);
+ const Option *o = find_option(k);
if (!o) {
// not a valid config option
return Option::value_t(boost::blank());