mirror of
https://github.com/curl/curl.git
synced 2026-04-14 23:51:42 +03:00
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:
parent
8c02407bef
commit
660600c747
5 changed files with 5 additions and 4 deletions
1
.github/scripts/badwords.txt
vendored
1
.github/scripts/badwords.txt
vendored
|
|
@ -73,6 +73,7 @@ host name\b:hostname
|
|||
host names\b:hostnames
|
||||
[^;<]file name\b:filename
|
||||
file names\b:filenames
|
||||
\bfist\b:first
|
||||
\buser name\b:username
|
||||
\buser names\b:usernames
|
||||
\bpass phrase:passphrase
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ writing that is `16` for "multi_easy" handles (used in `curl_easy_perform()`
|
|||
and `512` for multi handles created with `curl_multi_init()`.
|
||||
|
||||
The first added easy handle gets `mid == 1` assigned. The second one receives `2`,
|
||||
even when the fist one has been removed already. Every added handle gets an
|
||||
even when the first one has been removed already. Every added handle gets an
|
||||
`mid` one larger than the previously assigned one. Until the capacity of
|
||||
the table is reached and it starts looking for a free id at `1` again (`0`
|
||||
is always in the table).
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
|
|
|
|||
|
|
@ -1494,7 +1494,7 @@ static ParameterError parse_verbose(bool toggle)
|
|||
return err;
|
||||
}
|
||||
else if(!verbose_nopts) {
|
||||
/* fist `-v` in an argument resets to base verbosity */
|
||||
/* first `-v` in an argument resets to base verbosity */
|
||||
global->verbosity = 0;
|
||||
if(!global->trace_set && set_trace_config("-all"))
|
||||
return PARAM_NO_MEM;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue