From a51d4670ce663b957d91443d313c48b5f44254e3 Mon Sep 17 00:00:00 2001 From: Avra Sengupta Date: Tue, 16 Jun 2015 23:53:32 +0530 Subject: snapshot: Fix terminating slash in brick mount path glusterd_find_brick_mount_path(), returns mount path, with a terminating '/' at the ned of the string in cases where the brick dir is a dir in the lvm root dir. Ignoring the terminating '/' fixes the issue. Change-Id: Ie7e63d37d48e2e03d541ae0076b8f143b8c9112f BUG: 1232430 Signed-off-by: Avra Sengupta Reviewed-on: http://review.gluster.org/11262 Reviewed-by: Atin Mukherjee Tested-by: NetBSD Build System Reviewed-by: Rajesh Joseph --- xlators/mgmt/glusterd/src/glusterd-store.c | 1 - 1 file changed, 1 deletion(-) (limited to 'xlators') diff --git a/xlators/mgmt/glusterd/src/glusterd-store.c b/xlators/mgmt/glusterd/src/glusterd-store.c index c4c6f740571..125d1430ee5 100644 --- a/xlators/mgmt/glusterd/src/glusterd-store.c +++ b/xlators/mgmt/glusterd/src/glusterd-store.c @@ -3087,7 +3087,6 @@ glusterd_find_brick_mount_path (char *brick_path, char **brick_mount_path) ptr++; if (*ptr == '/') { - ptr++; *ptr = '\0'; } -- cgit