From: xie xingguo Date: Thu, 31 Mar 2016 11:48:38 +0000 (+0800) Subject: rgw: fix compiling error X-Git-Tag: v0.94.8~47^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F8475%2Fhead;p=ceph.git rgw: fix compiling error Signed-off-by: xie xingguo (cherry picked from commit 535eb0e608f3bf6b7c561f277e9977b91ab97b48) --- diff --git a/src/rgw/rgw_rest_s3.cc b/src/rgw/rgw_rest_s3.cc index f347d1485d07..46232f6b5ef1 100644 --- a/src/rgw/rgw_rest_s3.cc +++ b/src/rgw/rgw_rest_s3.cc @@ -1804,7 +1804,7 @@ void RGWListMultipart_ObjStore_S3::send_response() } s->formatter->dump_unsigned("PartNumber", info.num); - s->formatter->dump_format("ETag", "\"%s\"", info->etag.c_str()); + s->formatter->dump_format("ETag", "\"%s\"", info.etag.c_str()); s->formatter->dump_unsigned("Size", info.size); s->formatter->close_section(); }