1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

missing {

This commit is contained in:
Alasdair Kergon 2006-04-28 21:07:19 +00:00
parent 5c24f56b46
commit 8b4273d298

View File

@ -753,7 +753,7 @@ const char *find_config_str(const struct config_node *cn,
const struct config_node *n = find_config_node(cn, path);
/* Empty strings are ignored */
if ((n && n->v->type == CFG_STRING) && (*n->v->v.str))
if ((n && n->v->type == CFG_STRING) && (*n->v->v.str)) {
log_very_verbose("Setting %s to %s", path, n->v->v.str);
return n->v->v.str;
}