1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Log value chosen in _find_config_bool like other variable types do.

This commit is contained in:
Alasdair Kergon 2012-05-08 14:31:44 +00:00
parent eb2d70293d
commit fccc6ea295
2 changed files with 19 additions and 11 deletions

View File

@ -1,5 +1,6 @@
Version 1.02.75 -
================================
Log value chosen in _find_config_bool like other variable types do.
Synchronize with dead of dmeventd.
Rename (Blk)DevNames/DevNos dmsetup header to (Blk)DevNamesUsed/DevNosUsed.
Add configure --with-veritysetup for independent veritysetup tool.

View File

@ -842,22 +842,29 @@ static int _find_config_bool(const void *start, node_lookup_fn find,
{
const struct dm_config_node *n = find(start, path);
const struct dm_config_value *v;
int b;
if (!n)
return fail;
if (n) {
v = n->v;
v = n->v;
switch (v->type) {
case DM_CFG_INT:
b = v->v.i ? 1 : 0;
log_very_verbose("Setting %s to %d", path, b);
return b;
switch (v->type) {
case DM_CFG_INT:
return v->v.i ? 1 : 0;
case DM_CFG_STRING:
return _str_to_bool(v->v.str, fail);
default:
;
case DM_CFG_STRING:
b = _str_to_bool(v->v.str, fail);
log_very_verbose("Setting %s to %d", path, b);
return b;
default:
;
}
}
log_very_verbose("%s not found in config: defaulting to %d",
path, fail);
return fail;
}