summaryrefslogtreecommitdiffstats
path: root/tools/lvresize.c
diff options
context:
space:
mode:
authorJonathan Brassow <jbrassow@redhat.com>2012-09-05 11:35:54 -0500
committerJonathan Brassow <jbrassow@redhat.com>2012-09-05 11:35:54 -0500
commitc3eb3a76875ccf8c544c991bc52b6b3061bf8f58 (patch)
tree13c75423be2ee31d2b69731cdfad8b14eaef4ded /tools/lvresize.c
parent1b01a2f65a27b95717fa7b6d912271e330782873 (diff)
downloadlvm2-c3eb3a76875ccf8c544c991bc52b6b3061bf8f58.tar.gz
lvm2-c3eb3a76875ccf8c544c991bc52b6b3061bf8f58.tar.xz
lvm2-c3eb3a76875ccf8c544c991bc52b6b3061bf8f58.zip
cleanup: Use segtype->ops->name() instead of segtype->name where applicable
When printing a message for the user and the lv_segment pointer is available, use segtype->ops->name() instead of segtype->name. This gives a better user-readable name for the segment. This is especially true for the 'striped' segment type, which prints "linear" if there is an area_count of one.
Diffstat (limited to 'tools/lvresize.c')
-rw-r--r--tools/lvresize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lvresize.c b/tools/lvresize.c
index 5052bfbc..18e5917f 100644
--- a/tools/lvresize.c
+++ b/tools/lvresize.c
@@ -630,7 +630,7 @@ static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
lp->stripes = seg_stripes;
else if (seg_is_raid(first_seg(lv)) &&
(lp->stripes != seg_stripes)) {
- log_error("Unable to extend \"%s\" segment type with different number of stripes.", first_seg(lv)->segtype->name);
+ log_error("Unable to extend \"%s\" segment type with different number of stripes.", first_seg(lv)->segtype->ops->name(first_seg(lv)));
return ECMD_FAILED;
}