summaryrefslogtreecommitdiffstats
path: root/heal
diff options
context:
space:
mode:
Diffstat (limited to 'heal')
-rw-r--r--heal/src/glfs-heal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/heal/src/glfs-heal.c b/heal/src/glfs-heal.c
index 930b08f8301..9c628016898 100644
--- a/heal/src/glfs-heal.c
+++ b/heal/src/glfs-heal.c
@@ -696,11 +696,11 @@ glfsh_print_heal_status (dict_t *dict, char *path, uuid_t gfid,
goto out;
} else if (!strcmp (value, "possibly-healing")) {
ret = gf_asprintf (&status,
- " - Possibly undergoing heal\n");
+ " - Possibly undergoing heal");
if (ret < 0)
goto out;
} else if (!strcmp (value, "split-brain")) {
- ret = gf_asprintf (&status, " - Is in split-brain\n");
+ ret = gf_asprintf (&status, " - Is in split-brain");
if (ret < 0)
goto out;
} else if (!strcmp (value, "heal-pending")) {
@@ -710,13 +710,13 @@ glfsh_print_heal_status (dict_t *dict, char *path, uuid_t gfid,
goto out;
} else if (!strcmp (value, "split-brain-pending")) {
pending = _gf_true;
- ret = gf_asprintf (&status, " - Is in split-brain\n");
+ ret = gf_asprintf (&status, " - Is in split-brain");
if (ret < 0)
goto out;
} else if (!strcmp (value, "possibly-healing-pending")) {
pending = _gf_true;
ret = gf_asprintf (&status,
- " - Possibly undergoing heal\n");
+ " - Possibly undergoing heal");
if (ret < 0)
goto out;
}