badwords: add fist -> first, fix fallouts

There are still `curl_fistrgs` in packages/OS400/curl.inc.in but
I'm not sure what that's supposed to be exactly.

Closes #20066
This commit is contained in:
Yedaya Katsman 2025-12-21 21:53:58 +02:00 committed by Viktor Szakats
parent 8c02407bef
commit 660600c747
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
5 changed files with 5 additions and 4 deletions

View file

@ -445,7 +445,7 @@ static CURLcode proxy_h2_progress_ingress(struct Curl_cfilter *cf,
CURLcode result = CURLE_OK;
size_t nread;
/* Process network input buffer fist */
/* Process network input buffer first */
if(!Curl_bufq_is_empty(&ctx->inbufq)) {
CURL_TRC_CF(data, cf, "[0] process %zu bytes in connection buffer",
Curl_bufq_len(&ctx->inbufq));

View file

@ -2042,7 +2042,7 @@ static CURLcode h2_progress_ingress(struct Curl_cfilter *cf,
return CURLE_HTTP2;
}
/* Process network input buffer fist */
/* Process network input buffer first */
if(!Curl_bufq_is_empty(&ctx->inbufq)) {
CURL_TRC_CF(data, cf, "Process %zu bytes in connection buffer",
Curl_bufq_len(&ctx->inbufq));