From abecf8517769f630a452f9274c4c669701097c7e Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 28 Sep 2016 15:23:41 -0400 Subject: [PATCH] cls/rgw: fix function names of log output Signed-off-by: Casey Bodley --- src/cls/rgw/cls_rgw.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cls/rgw/cls_rgw.cc b/src/cls/rgw/cls_rgw.cc index 84aaf57e703c4..85c2896271243 100644 --- a/src/cls/rgw/cls_rgw.cc +++ b/src/cls/rgw/cls_rgw.cc @@ -652,7 +652,7 @@ int rgw_bucket_set_tag_timeout(cls_method_context_t hctx, bufferlist *in, buffer struct rgw_bucket_dir_header header; int rc = read_bucket_header(hctx, &header); if (rc < 0) { - CLS_LOG(1, "ERROR: rgw_bucket_complete_op(): failed to read header\n"); + CLS_LOG(1, "ERROR: rgw_bucket_set_tag_timeout(): failed to read header\n"); return rc; } @@ -713,7 +713,7 @@ int rgw_bucket_prepare_op(cls_method_context_t hctx, bufferlist *in, bufferlist struct rgw_bucket_dir_header header; rc = read_bucket_header(hctx, &header); if (rc < 0) { - CLS_LOG(1, "ERROR: rgw_bucket_complete_op(): failed to read header\n"); + CLS_LOG(1, "ERROR: rgw_bucket_prepare_op(): failed to read header\n"); return rc; } -- 2.39.5