From b912cb8c75de163ca96bad3b57975415bea794dc Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 26 May 2026 18:48:53 +0200 Subject: [PATCH] or higher -> or greater 10 lib 2 --- lib/http.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/http.c b/lib/http.c index 15bf5eecc6..0f2385d460 100644 --- a/lib/http.c +++ b/lib/http.c @@ -2378,7 +2378,7 @@ static CURLcode http_req_set_TE(struct Curl_easy *data, STRCONST("Transfer-Encoding:"), STRCONST("chunked")); if(data->req.upload_chunky && (httpversion >= 20)) { infof(data, "suppressing chunked transfer encoding on connection " - "using HTTP version 2 or higher"); + "using HTTP version 2 or greater"); data->req.upload_chunky = FALSE; } } @@ -2388,7 +2388,7 @@ static CURLcode http_req_set_TE(struct Curl_easy *data, if(req_clen < 0) { /* indeterminate request content length */ if(httpversion > 10) { - /* On HTTP/1.1, enable chunked, on HTTP/2 or higher we do not + /* On HTTP/1.1, enable chunked, on HTTP/2 or greater we do not * need it */ data->req.upload_chunky = (httpversion < 20); }