From: lu.shasha Date: Tue, 12 Sep 2017 03:19:44 +0000 (+0800) Subject: rgw: LCFilter_S3::to_xml the second "prefix" missed "/" X-Git-Tag: v13.0.1~936^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=dcef8555e1bf2656aeb5316c4b78f1facf2ae172;p=ceph-ci.git rgw: LCFilter_S3::to_xml the second "prefix" missed "/" Signed-off-by: Shasha Lu --- diff --git a/src/rgw/rgw_lc_s3.h b/src/rgw/rgw_lc_s3.h index 1ac30d8efe8..7ff1bf71ba5 100644 --- a/src/rgw/rgw_lc_s3.h +++ b/src/rgw/rgw_lc_s3.h @@ -34,7 +34,7 @@ class LCFilter_S3 : public LCFilter, public XMLObj void to_xml(ostream& out){ out << ""; if (!prefix.empty()) - out << "" << prefix << ""; + out << "" << prefix << ""; out << ""; } void dump_xml(Formatter *f) const {