summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-snapshot.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-snapshot.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-snapshot.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-snapshot.c b/xlators/mgmt/glusterd/src/glusterd-snapshot.c
index c8911defd3b..9cb6095020e 100644
--- a/xlators/mgmt/glusterd/src/glusterd-snapshot.c
+++ b/xlators/mgmt/glusterd/src/glusterd-snapshot.c
@@ -4717,7 +4717,8 @@ glusterd_add_brick_to_snap_volume (dict_t *dict, dict_t *rsp_dict,
if (!ret) {
/* Update the fstype in original brickinfo as well */
strcpy (original_brickinfo->fstype, value);
- strcpy (snap_brickinfo->fstype, value);
+ strncpy (snap_brickinfo->fstype, value,
+ (sizeof (snap_brickinfo->fstype) - 1));
} else {
if (is_origin_glusterd (dict) == _gf_true)
add_missed_snap = _gf_true;