aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2013-04-11 16:32:10 +0200
committerPeter Rajnoha <prajnoha@redhat.com>2013-04-11 16:32:10 +0200
commite7ccad2ef0e813f6ca42ab5090e76aa5bee05912 (patch)
treef5a96f4ba054506781e5de53c6b902ee59116eaf /lib
parent91c9771fc3c97b0ff1169cf81f29918d3e3a501d (diff)
downloadlvm2-e7ccad2ef0e813f6ca42ab5090e76aa5bee05912.tar.gz
config: remove typo in handling devices/write_cache_state config
...which caused the cmd->dump_filter to be always set irrespective of the actual devices/write_cache_state setting.
Diffstat (limited to 'lib')
-rw-r--r--lib/commands/toolcontext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/commands/toolcontext.c b/lib/commands/toolcontext.c
index 5dff34004..c42a0bf21 100644
--- a/lib/commands/toolcontext.c
+++ b/lib/commands/toolcontext.c
@@ -932,7 +932,7 @@ static int _init_filters(struct cmd_context *cmd, unsigned load_persistent_cache
}
/* Should we ever dump persistent filter state? */
- if (find_config_tree_bool(cmd, devices_write_cache_state_CFG));
+ if (find_config_tree_bool(cmd, devices_write_cache_state_CFG))
cmd->dump_filter = 1;
if (!*cmd->system_dir)