summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt
diff options
context:
space:
mode:
authorLalatendu Mohanty <lmohanty@redhat.com>2014-01-08 14:25:08 +0530
committerVijay Bellur <vbellur@redhat.com>2014-01-09 22:43:24 -0800
commit21ffbf9b92b2478c17f816a8d0418a7cb080998a (patch)
treecb6405a4661f4e67158a1afe0eca0119a3f1bdce /xlators/mgmt
parent2b05c1588ac60af26e1b16f9f27ef8d5e4e50a5f (diff)
geo-rep: Fixing an incorrect memcpy operation.
Currently we are copying a higher size variable to lower size variable i.e. copying a NAME_MAX to PATH_MAX sized variable in "memcpy (sts_val->worker_status, monitor_status, strlen(monitor_status));" Change-Id: I81dca8e81a4aea5545d5982aed20e05a5e08641c Signed-off-by: Lalatendu Mohanty <lmohanty@redhat.com> Reviewed-on: http://review.gluster.org/6667 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/mgmt')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-geo-rep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-geo-rep.c b/xlators/mgmt/glusterd/src/glusterd-geo-rep.c
index 5d724cc2a..c5c76e11a 100644
--- a/xlators/mgmt/glusterd/src/glusterd-geo-rep.c
+++ b/xlators/mgmt/glusterd/src/glusterd-geo-rep.c
@@ -2743,7 +2743,7 @@ glusterd_read_status_file (glusterd_volinfo_t *volinfo, char *slave,
char *master = NULL;
char tmp[1024] = "";
char sts_val_name[1024] = "";
- char monitor_status[PATH_MAX] = "";
+ char monitor_status[NAME_MAX] = "";
char *statefile = NULL;
char *socketfile = NULL;
dict_t *confd = NULL;