diff options
author | Amar Tumballi <amar@gluster.com> | 2010-08-26 05:53:41 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-08-26 07:31:13 -0700 |
commit | 9fe52c92ace1c8c1e6e016aad8bb14973d6c9dc0 (patch) | |
tree | 4934eac56bfe5aa6e4f098093b98fdd30d13b285 /xlators/mgmt/glusterd/src/glusterd-handshake.c | |
parent | 44f187fad77512e6b9d22852b79dc9621d688798 (diff) |
glusterd: handle failure of 'getspec' in case of '-' in volume name
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 1433 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1433
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-handshake.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-handshake.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-handshake.c b/xlators/mgmt/glusterd/src/glusterd-handshake.c index 43a937317..471fed3f1 100644 --- a/xlators/mgmt/glusterd/src/glusterd-handshake.c +++ b/xlators/mgmt/glusterd/src/glusterd-handshake.c @@ -56,10 +56,7 @@ build_volfile_path (const char *volname, char *path, ret = glusterd_volinfo_find (dup_volname, &volinfo); if (ret) { /* Split the volume name */ - vol = strtok_r (dup_volname, "-", &tmp); - if (!vol) - goto out; - vol = strtok_r (NULL, "-", &tmp); + vol = strtok_r (dup_volname, ".", &tmp); if (!vol) goto out; ret = glusterd_volinfo_find (vol, &volinfo); |