From: Yan, Zheng Date: Mon, 11 Jul 2016 07:32:41 +0000 (+0800) Subject: client: fix MetaRequest::set_other_inode() X-Git-Tag: v10.2.3~114^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F10373%2Fhead;p=ceph.git client: fix MetaRequest::set_other_inode() Signed-off-by: Yan, Zheng (cherry picked from commit 265f96bda7e106883063f074133450ce39ee262c) --- diff --git a/src/client/MetaRequest.h b/src/client/MetaRequest.h index c180de626e67..43173b4128d2 100644 --- a/src/client/MetaRequest.h +++ b/src/client/MetaRequest.h @@ -140,7 +140,7 @@ public: out->swap(_old_inode); } void set_other_inode(Inode *in) { - _old_inode = in; + _other_inode = in; } Inode *other_inode() { return _other_inode.get();