summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYehuda Sadeh <yehuda@inktank.com>2013-06-23 01:15:10 -0700
committerYehuda Sadeh <yehuda@inktank.com>2013-06-23 01:15:10 -0700
commitc103031ec6b259c70e3e33609dbb292f5b04d3fe (patch)
treea6abe30f724154d10b6412f7a9125b26d1d5f8b9
parent7e3493f8726cd3a0b4e4db3ebe0756922575a514 (diff)
downloadceph-c103031ec6b259c70e3e33609dbb292f5b04d3fe.tar.gz
rgw: initialize system flag in RGWUserInfo
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
-rw-r--r--src/rgw/rgw_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/rgw_common.h b/src/rgw/rgw_common.h
index 4e898b80113..bafe10d46db 100644
--- a/src/rgw/rgw_common.h
+++ b/src/rgw/rgw_common.h
@@ -414,7 +414,7 @@ struct RGWUserInfo
string default_placement;
list<string> placement_tags;
- RGWUserInfo() : auid(0), suspended(0), max_buckets(RGW_DEFAULT_MAX_BUCKETS) {}
+ RGWUserInfo() : auid(0), suspended(0), max_buckets(RGW_DEFAULT_MAX_BUCKETS), system(0) {}
void encode(bufferlist& bl) const {
ENCODE_START(13, 9, bl);