diff options
Diffstat (limited to 'xlators/storage/posix/src/posix.c')
| -rw-r--r-- | xlators/storage/posix/src/posix.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index c78decd8482..b1a529bcfee 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -3419,7 +3419,6 @@ posix_writev (call_frame_t *frame, xlator_t *this, fd_t *fd,          if (ret < 0) {                  gf_msg (this->name, GF_LOG_WARNING, ret, P_MSG_PFD_NULL,                          "pfd is NULL from fd=%p", fd); -                op_errno = -ret;                  goto out;          } @@ -5956,7 +5955,6 @@ posix_fstat (call_frame_t *frame, xlator_t *this,          if (ret < 0) {                  gf_msg (this->name, GF_LOG_WARNING, op_errno, P_MSG_PFD_NULL,                          "pfd is NULL, fd=%p", fd); -                op_errno = -ret;                  goto out;          } @@ -6388,7 +6386,7 @@ posix_do_readdir (call_frame_t *frame, xlator_t *this,          ret = posix_fd_ctx_get (fd, this, &pfd, &op_errno);          if (ret < 0) { -                gf_msg (this->name, GF_LOG_WARNING, -ret, P_MSG_PFD_NULL, +                gf_msg (this->name, GF_LOG_WARNING, op_errno, P_MSG_PFD_NULL,                          "pfd is NULL, fd=%p", fd);                  goto out;          }  | 
