diff options
author | Vijay Bellur <vijay@gluster.com> | 2012-01-26 16:11:02 +0530 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2012-01-26 05:23:33 -0800 |
commit | 6b0cd9fc8450029449f7c320a2e5d766e87ac8d4 (patch) | |
tree | c1ba7ecfb64e4981462992993aac6b22fc75ca28 | |
parent | cf57b7b517af68c56fb8d4c229e2988c306384c4 (diff) |
protocol/client: Pass the right arguments to CLIENT_GET_REMOTE_FD
Change-Id: I04f984f20964650a38009bba7711d2757151ade5
BUG: 762935
Signed-off-by: Vijay Bellur <vijay@gluster.com>
Reviewed-on: http://review.gluster.com/2694
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@gluster.com>
-rw-r--r-- | xlators/protocol/client/src/client3_1-fops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/protocol/client/src/client3_1-fops.c b/xlators/protocol/client/src/client3_1-fops.c index 56816e9b5a4..3d39fc579ff 100644 --- a/xlators/protocol/client/src/client3_1-fops.c +++ b/xlators/protocol/client/src/client3_1-fops.c @@ -4639,7 +4639,7 @@ client3_1_fremovexattr (call_frame_t *frame, xlator_t *this, if (!(args->fd && args->fd->inode)) goto unwind; - CLIENT_GET_REMOTE_FD(conf, args->fd, remote_fd, unwind); + CLIENT_GET_REMOTE_FD(conf, args->fd, remote_fd, op_errno, unwind); memcpy (req.gfid, args->fd->inode->gfid, 16); req.name = (char *)args->name; |