diff options
| -rw-r--r-- | xlators/storage/posix/src/posix.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 6bb74393173..163ec928e95 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -2879,7 +2879,8 @@ posix_getxattr (call_frame_t *frame, xlator_t *this,                                                       "supported (try remounting"                                                       " brick with 'user_xattr' "                                                       "flag)"); -                        } else if (op_errno == ENOATTR) { +                        } else if (op_errno == ENOATTR || +                                        op_errno == ENODATA) {                                  gf_log (this->name, GF_LOG_DEBUG,                                          "No such attribute:%s for file %s",                                          key, real_path);  | 
