From: Yan, Zheng Date: Mon, 11 Jul 2016 07:32:41 +0000 (+0800) Subject: client: fix MetaRequest::set_other_inode() X-Git-Tag: ses5-milestone5~375^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F9955%2Fhead;p=ceph.git client: fix MetaRequest::set_other_inode() Signed-off-by: Yan, Zheng --- diff --git a/src/client/MetaRequest.h b/src/client/MetaRequest.h index fdfffea756c..1776bdefbe4 100644 --- a/src/client/MetaRequest.h +++ b/src/client/MetaRequest.h @@ -137,7 +137,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();