From b698a7660ee475cc3bbae095db74685ea0ec64d6 Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Thu, 29 Oct 2015 20:14:44 +1000 Subject: [PATCH] rgw: Fix typo in RGWHTTPClient::process error message Signed-off-by: Brad Hubbard --- src/rgw/rgw_http_client.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/rgw_http_client.cc b/src/rgw/rgw_http_client.cc index 3a382c0173262..4fedff9d91348 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); -- 2.39.5