]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cls_rgw: fix debug message
authorYehuda Sadeh <yehuda.sadeh@dreamhost.com>
Wed, 7 Mar 2012 18:44:43 +0000 (10:44 -0800)
committerYehuda Sadeh <yehuda.sadeh@dreamhost.com>
Wed, 7 Mar 2012 18:44:43 +0000 (10:44 -0800)
Signed-off-by: Yehuda Sadeh <yehuda.sadeh@dreamhost.com>
src/cls_rgw.cc

index dbf383246c22621d9b7f56bef83c46b5d9cae525..b1efc7815df79c28404a8b951c76f083b820ae94 100644 (file)
@@ -52,7 +52,7 @@ int rgw_bucket_list(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
   try {
     ::decode(new_dir.header, header_iter);
   } catch (buffer::error& err) {
-    CLS_LOG("ERROR: rgw_bucket_complete_op(): failed to decode header\n");
+    CLS_LOG("ERROR: rgw_bucket_list(): failed to decode header\n");
     return -EINVAL;
   }
 
@@ -84,7 +84,6 @@ int rgw_bucket_list(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
   ret.is_truncated = (kiter != keys.end());
 
   ::encode(ret, *out);
-
   return 0;
 }