diff options
author | Yehuda Sadeh <yehuda@redhat.com> | 2016-10-13 05:22:01 +0200 |
---|---|---|
committer | Yehuda Sadeh <yehuda@redhat.com> | 2017-03-09 18:18:51 +0100 |
commit | 81070d3424a5f4f6b28389fe2cd68ad76c505f41 (patch) | |
tree | 1c8592c70128bb849489d8dd785e990bb51b2e05 /src/cls | |
parent | rgw: decode rgw_raw_obj as rgw_obj when it's old object (diff) | |
download | ceph-81070d3424a5f4f6b28389fe2cd68ad76c505f41.tar.xz ceph-81070d3424a5f4f6b28389fe2cd68ad76c505f41.zip |
rgw: use rgw_raw_obj in manifest code
This drags in multiple related changes that are needed in order to
support that.
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Diffstat (limited to 'src/cls')
-rw-r--r-- | src/cls/rgw/cls_rgw_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cls/rgw/cls_rgw_types.h b/src/cls/rgw/cls_rgw_types.h index 2ebd7c98dda..248a642b5a0 100644 --- a/src/cls/rgw/cls_rgw_types.h +++ b/src/cls/rgw/cls_rgw_types.h @@ -872,7 +872,7 @@ struct cls_rgw_obj_chain { cls_rgw_obj_chain() {} - void push_obj(const string& pool, cls_rgw_obj_key& key, string& loc) { + void push_obj(const string& pool, const cls_rgw_obj_key& key, const string& loc) { cls_rgw_obj obj; obj.pool = pool; obj.key = key; |