From 136ec654c2e961d24d2fe8312ae0aacfd67c90b0 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Sat, 2 Apr 2016 15:19:06 +0000 Subject: [PATCH] fix typo in curl.cpp: s/returing/returning/ --- src/curl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/curl.cpp b/src/curl.cpp index 942ca6a..2abb81d 100644 --- a/src/curl.cpp +++ b/src/curl.cpp @@ -1762,7 +1762,7 @@ int S3fsCurl::RequestPerform(void) // Service response codes which are >= 400 && < 500 switch(LastResponseCode){ case 400: - S3FS_PRN_INFO3("HTTP response code 400 was returned, returing EIO."); + S3FS_PRN_INFO3("HTTP response code 400 was returned, returning EIO."); S3FS_PRN_DBG("Body Text: %s", (bodydata ? bodydata->str() : "")); return -EIO;