From 2c3b92b550ee1ba0c165acb7da87cc5cd8cf3eb9 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Fri, 22 Jul 2016 10:00:24 -0500 Subject: [PATCH] lvconvert: change error message for implicit pool conversion since it's also used when the lv is already a pool --- tools/lvconvert.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/lvconvert.c b/tools/lvconvert.c index 9dd72542d..5d29cc4d3 100644 --- a/tools/lvconvert.c +++ b/tools/lvconvert.c @@ -3913,7 +3913,7 @@ static int _convert_striped_thin(struct cmd_context *cmd, struct logical_volume { /* lvconvert --thin includes an implicit conversion of the thinpool arg to type thin-pool. */ if (!_lvconvert_pool(cmd, lv, lp)) { - log_error("Implicit conversion of --thinpool arg to type thin-pool failed."); + log_error("Conversion of --thinpool arg to type thin-pool failed."); return 0; } @@ -3939,7 +3939,7 @@ static int _convert_striped_cache(struct cmd_context *cmd, struct logical_volume { /* lvconvert --cache includes an implicit conversion of the cachepool arg to type cache-pool. */ if (!_lvconvert_pool(cmd, lv, lp)) { - log_error("Implicit conversion of --cachepool arg to type cache-pool failed."); + log_error("Conversion of --cachepool arg to type cache-pool failed."); return 0; } -- 2.43.5