From: Ikko Ashimine Date: Wed, 27 Jan 2021 14:07:35 +0000 (+0900) Subject: hyper: fix typo in c-hyper.c X-Git-Tag: curl-7_75_0~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73d743cfadb0b800d15a6a68ceb4fd5e22fdabd7;p=thirdparty%2Fcurl.git hyper: fix typo in c-hyper.c settting -> setting Closes #6538 --- diff --git a/lib/c-hyper.c b/lib/c-hyper.c index b92812bd64..cdb8e0ef35 100644 --- a/lib/c-hyper.c +++ b/lib/c-hyper.c @@ -744,7 +744,7 @@ CURLcode Curl_http(struct Curl_easy *data, bool *done) if(data->set.httpversion == CURL_HTTP_VERSION_1_0) { if(HYPERE_OK != hyper_request_set_version(req, HYPER_HTTP_VERSION_1_0)) { - failf(data, "error settting HTTP version"); + failf(data, "error setting HTTP version"); goto error; } }