diff options
author | Michael Adam <obnox@samba.org> | 2016-12-07 07:21:41 +0100 |
---|---|---|
committer | Atin Mukherjee <amukherj@redhat.com> | 2017-01-16 08:43:28 -0800 |
commit | 514522d12e15e5632a0ff89785618b37dad7f5dd (patch) | |
tree | 0872d7c00661b86e900541dadac1a6224da8e967 | |
parent | afdd83a9b69573b854e732795c0bcba0a00d6c0f (diff) |
glusterd: remove extra space in error message
BUG: 1402237
Change-Id: Ib6efca655555a92a0542ef6056f3357f390eeb38
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-on: http://review.gluster.org/16048
Tested-by: Atin Mukherjee <amukherj@redhat.com>
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
Smoke: Gluster Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index 3227923a99e..3b3effac1d3 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -1131,8 +1131,8 @@ glusterd_brickinfo_new_from_brick (char *brick, "Failed to convert hostname %s to uuid", hostname); if (op_errstr) - gf_asprintf (op_errstr, "Host %s is not in \' " - "Peer in Cluster\' state", + gf_asprintf (op_errstr, "Host %s is not in " + "\'Peer in Cluster\' state", new_brickinfo->hostname); goto out; } |