From dcef8555e1bf2656aeb5316c4b78f1facf2ae172 Mon Sep 17 00:00:00 2001 From: "lu.shasha" Date: Tue, 12 Sep 2017 11:19:44 +0800 Subject: [PATCH] rgw: LCFilter_S3::to_xml the second "prefix" missed "/" Signed-off-by: Shasha Lu --- src/rgw/rgw_lc_s3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/rgw_lc_s3.h b/src/rgw/rgw_lc_s3.h index 1ac30d8efe89..7ff1bf71ba5a 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 { -- 2.47.3