]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: Fix typo in RGWHTTPClient::process error message 6424/head
authorBrad Hubbard <bhubbard@redhat.com>
Thu, 29 Oct 2015 10:14:44 +0000 (20:14 +1000)
committerBrad Hubbard <bhubbard@redhat.com>
Thu, 29 Oct 2015 10:14:44 +0000 (20:14 +1000)
Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
src/rgw/rgw_http_client.cc

index 3a382c01732625bb1ffe34ca0d28c9baedb737ad..4fedff9d91348b76c731ec7896ee95e498917c3a 100644 (file)
@@ -108,7 +108,7 @@ int RGWHTTPClient::process(const char *method, const char *url)
   }
   CURLcode status = curl_easy_perform(curl_handle);
   if (status) {
-    dout(0) << "curl_easy_performed returned error: " << error_buf << dendl;
+    dout(0) << "curl_easy_perform returned error: " << error_buf << dendl;
     ret = -EINVAL;
   }
   curl_easy_cleanup(curl_handle);