summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Brassow <jbrassow@redhat.com>2017-04-12 10:28:19 -0500
committerJonathan Brassow <jbrassow@redhat.com>2017-04-12 10:28:19 -0500
commitba12a2e81a319c22353c8e52bf29f55c924b2d9f (patch)
tree973c0238f99e940a3061ad4399cbeb535f35bd85
parent532388fad510c7ba706ecbd4b5fbd2643134d63b (diff)
downloadlvm2-working.tar.gz
Typo: change loose to loseworking
loose (v): set free; release lose (v) : be deprived of or cease to have or retain We 'lose' redundancy or 'lose' meaning.
-rw-r--r--daemons/cmirrord/cluster.c2
-rw-r--r--lib/metadata/raid_manip.c10
2 files changed, 6 insertions, 6 deletions
diff --git a/daemons/cmirrord/cluster.c b/daemons/cmirrord/cluster.c
index e196eb262..94be563af 100644
--- a/daemons/cmirrord/cluster.c
+++ b/daemons/cmirrord/cluster.c
@@ -182,7 +182,7 @@ int cluster_send(struct clog_request *rq)
}
/*
- * Once the request heads for the cluster, the luid looses
+ * Once the request heads for the cluster, the luid loses
* all its meaning.
*/
rq->u_rq.luid = 0;
diff --git a/lib/metadata/raid_manip.c b/lib/metadata/raid_manip.c
index 961417965..b58ba2da4 100644
--- a/lib/metadata/raid_manip.c
+++ b/lib/metadata/raid_manip.c
@@ -2932,7 +2932,7 @@ static int _raid_remove_images(struct logical_volume *lv, int yes,
/* Convert to linear? */
if (new_count == 1) {
- if (!yes && yes_no_prompt("Are you sure you want to convert %s LV %s to type %s loosing all resilience? [y/n]: ",
+ if (!yes && yes_no_prompt("Are you sure you want to convert %s LV %s to type %s losing all resilience? [y/n]: ",
lvseg_name(first_seg(lv)), display_lvname(lv), SEG_TYPE_NAME_LINEAR) == 'n') {
log_error("Logical volume %s NOT converted to \"%s\".",
display_lvname(lv), SEG_TYPE_NAME_LINEAR);
@@ -3072,9 +3072,9 @@ int lv_raid_split(struct logical_volume *lv, int yes, const char *split_name,
return 0;
}
- /* Split on a 2-legged raid1 LV causes loosing all resilience */
+ /* Split on a 2-legged raid1 LV causes losing all resilience */
if (new_count == 1 &&
- !yes && yes_no_prompt("Are you sure you want to split %s LV %s loosing all resilience? [y/n]: ",
+ !yes && yes_no_prompt("Are you sure you want to split %s LV %s losing all resilience? [y/n]: ",
lvseg_name(first_seg(lv)), display_lvname(lv)) == 'n') {
log_error("Logical volume %s NOT split.", display_lvname(lv));
return 0;
@@ -3214,9 +3214,9 @@ int lv_raid_split_and_track(struct logical_volume *lv,
return 0;
}
- /* Split and track changes on a 2-legged raid1 LV causes loosing resilience for newly written data. */
+ /* Split and track changes on a 2-legged raid1 LV causes losing resilience for newly written data. */
if (seg->area_count == 2 &&
- !yes && yes_no_prompt("Are you sure you want to split and track %s LV %s loosing resilience for any newly written data? [y/n]: ",
+ !yes && yes_no_prompt("Are you sure you want to split and track %s LV %s losing resilience for any newly written data? [y/n]: ",
lvseg_name(seg), display_lvname(lv)) == 'n') {
log_error("Logical volume %s NOT split.", display_lvname(lv));
return 0;