diff options
| -rw-r--r-- | xlators/storage/posix/src/posix-helpers.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c index 922170c3e33..874b0a0171b 100644 --- a/xlators/storage/posix/src/posix-helpers.c +++ b/xlators/storage/posix/src/posix-helpers.c @@ -367,7 +367,7 @@ _posix_get_marker_all_contributions(posix_xattr_filler_t *filler)      list_offset = 0;      while (remaining_size > 0) { -        strncpy(key, list + list_offset, sizeof(key)); +        snprintf(key, sizeof(key), "%s", list + list_offset);          if (fnmatch(marker_contri_key, key, 0) == 0) {              ret = _posix_xattr_get_set_from_backend(filler, key);          }  | 
