summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2016-04-18 11:04:06 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2016-04-18 12:32:56 +0200
commitd1c1f60047bb6973eee432ea14f93058a836faac (patch)
tree01190713a1cc653d0ea7d70d796f00448cf14d68
parente2ceb90095ab008c13a3d0db0bbf1bc2bd8557f2 (diff)
downloadlvm2-d1c1f60047bb6973eee432ea14f93058a836faac.tar.gz
debug: use display_lvname
-rw-r--r--tools/toollib.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/toollib.c b/tools/toollib.c
index b1225cd67..5e9b4d832 100644
--- a/tools/toollib.c
+++ b/tools/toollib.c
@@ -1057,13 +1057,15 @@ int lv_change_activate(struct cmd_context *cmd, struct logical_volume *lv,
snapshot_lv = find_snapshot(lv)->lv;
if (lv_is_thin_type(snapshot_lv) && !deactivate_lv(cmd, snapshot_lv)) {
if (is_change_activating(activate)) {
- log_error("Refusing to activate merging \"%s\" while snapshot \"%s\" is still active.",
- lv->name, find_snapshot(lv)->lv->name);
+ log_error("Refusing to activate merging volume %s while "
+ "snapshot volume %s is still active.",
+ display_lvname(lv), display_lvname(snapshot_lv));
return 0;
}
- log_error("Cannot fully deactivate merging origin \"%s\" while snapshot \"%s\" is still active.",
- lv->name, find_snapshot(lv)->lv->name);
+ log_error("Cannot fully deactivate merging origin volume %s while "
+ "snapshot volume %s is still active.",
+ display_lvname(lv), display_lvname(snapshot_lv));
r = 0; /* and continue to deactivate origin... */
}
}