From 5e9bdf897715781a9bdad3ac68eab25f0395e889 Mon Sep 17 00:00:00 2001 From: Yehuda Sadeh Date: Tue, 9 Aug 2011 10:53:09 -0700 Subject: [PATCH] librados: add missing method that was lost in merge --- src/librados.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/librados.cc b/src/librados.cc index fc2c7a6e14a1e..d761f803e06e4 100644 --- a/src/librados.cc +++ b/src/librados.cc @@ -194,6 +194,12 @@ void librados::ObjectReadOperation::getxattrs() o->getxattrs(); } +void librados::ObjectWriteOperation::create(bool exclusive) +{ + ::ObjectOperation *o = (::ObjectOperation *)impl; + o->create(exclusive); +} + void librados::ObjectWriteOperation::create(bool exclusive, const std::string& category) { ::ObjectOperation *o = (::ObjectOperation *)impl; -- 2.39.5