From fa2da0c5e7e33f3afe763025ccf8d95bc7d8ece3 Mon Sep 17 00:00:00 2001 From: Colin Patrick McCabe Date: Mon, 2 May 2011 15:57:06 -0700 Subject: [PATCH] rgw: fix ACL XML generation Put AccessControlPolicy in the http://s3.amazonaws.com/doc/2006-03-01/ namespace. Signed-off-by: Colin McCabe --- src/rgw/rgw_acl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/rgw_acl.h b/src/rgw/rgw_acl.h index 6ac593f3db36c..611b9443ea17d 100644 --- a/src/rgw/rgw_acl.h +++ b/src/rgw/rgw_acl.h @@ -403,7 +403,7 @@ public: ::decode(acl, bl); } void to_xml(ostream& out) { - out << ""; + out << ""; owner.to_xml(out); acl.to_xml(out); out << ""; -- 2.39.5