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

cleanup: use display_lvname

Show more complete LV names.
This commit is contained in:
Zdenek Kabelac 2014-08-15 15:52:01 +02:00
parent c894c3c87f
commit ec41bd1920

View File

@ -1012,9 +1012,10 @@ static int _lvchange_single(struct cmd_context *cmd, struct logical_volume *lv,
if (!arg_count(cmd, yes_ARG) && if (!arg_count(cmd, yes_ARG) &&
(yes_no_prompt("Change of snapshot %s will also change its " (yes_no_prompt("Change of snapshot %s will also change its "
"origin %s%s. Proceed? [y/n]: ", lv->name, "origin %s%s. Proceed? [y/n]: ",
origin->name, snaps_msg) == 'n')) { display_lvname(lv), display_lvname(origin),
log_error("Logical volume %s not changed.", lv->name); snaps_msg) == 'n')) {
log_error("Logical volume %s not changed.", display_lvname(lv));
return ECMD_FAILED; return ECMD_FAILED;
} }
} }