summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-10-22 17:12:18 -0700
committerSage Weil <sage@inktank.com>2013-10-22 17:24:23 -0700
commit2f99d3872ce8de712131d7db114687e9f3af7e64 (patch)
tree64c61fc3af42564001c1b62bb5c3185a32bd2e5b
parent189e38a0ba95c574177c6f472e4f9811ebfffd02 (diff)
downloadceph-2f99d3872ce8de712131d7db114687e9f3af7e64.tar.gz
os/ObjectStore: fix RMATTRS encoding
Apparently nobody uses this! Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r--src/os/ObjectStore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/ObjectStore.h b/src/os/ObjectStore.h
index 69f3cb1fba7..6494290b541 100644
--- a/src/os/ObjectStore.h
+++ b/src/os/ObjectStore.h
@@ -499,7 +499,7 @@ public:
ops++;
}
void rmattrs(coll_t cid, const ghobject_t& oid) {
- __u32 op = OP_RMATTR;
+ __u32 op = OP_RMATTRS;
::encode(op, tbl);
::encode(cid, tbl);
::encode(oid, tbl);