From: Brad Hubbard Date: Thu, 29 Oct 2015 10:14:44 +0000 (+1000) Subject: rgw: Fix typo in RGWHTTPClient::process error message X-Git-Tag: v10.0.0~33^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b698a7660ee475cc3bbae095db74685ea0ec64d6;p=ceph.git rgw: Fix typo in RGWHTTPClient::process error message Signed-off-by: Brad Hubbard --- diff --git a/src/rgw/rgw_http_client.cc b/src/rgw/rgw_http_client.cc index 3a382c01732..4fedff9d913 100644 --- a/src/rgw/rgw_http_client.cc +++ b/src/rgw/rgw_http_client.cc @@ -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);