diff options
author | Yehuda Sadeh <yehuda@inktank.com> | 2013-04-15 21:40:11 -0700 |
---|---|---|
committer | Yehuda Sadeh <yehuda@inktank.com> | 2013-04-15 21:40:11 -0700 |
commit | 564626c80a6048cb24103092f6f4f8d5ccdf8f3c (patch) | |
tree | ab052240cfdcb1b838e4a9e7738b2990b3dc6d67 | |
parent | 83ff9fecd82c55dd9f46b87687bedb9298099df5 (diff) | |
download | ceph-564626c80a6048cb24103092f6f4f8d5ccdf8f3c.tar.gz |
rgw: call rgw_store_user_info() with objv_tracker
another rebase casualty
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
-rw-r--r-- | src/rgw/rgw_user.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/rgw_user.cc b/src/rgw/rgw_user.cc index fa5247d19a1..363825fb286 100644 --- a/src/rgw/rgw_user.cc +++ b/src/rgw/rgw_user.cc @@ -1539,7 +1539,7 @@ int RGWUser::update(RGWUserAdminOpState& op_state, std::string *err_msg) return ret; } } else { - ret = rgw_store_user_info(store, user_info, NULL, NULL, false); + ret = rgw_store_user_info(store, user_info, NULL, &op_state.objv, false); if (ret < 0) { set_err_msg(err_msg, "unable to store user info"); return ret; |