From e063bd44b4e1886cf59f731c9188c4d34d9ec2dc Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 12 Jul 2025 23:04:06 +0200 Subject: [PATCH] lib: AGAINed -> AGAIN-ed to make typos tool happy --- .github/scripts/typos.toml | 2 +- lib/http2.c | 2 +- lib/vtls/wolfssl.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/typos.toml b/.github/scripts/typos.toml index b74d5ec1bb..f6558d4d29 100644 --- a/.github/scripts/typos.toml +++ b/.github/scripts/typos.toml @@ -5,7 +5,7 @@ [default] extend-ignore-identifiers-re = [ "(ba|BA|FU|Iy|ND|OT|pn|PN|UE)", - "(CNA|ECT|EDE|Jod|kno|Ned|nto|ser|Typ|URE)", + "(CNA|ECT|EDE|Jod|kno|nto|ser|Typ|URE)", "(admi|alue|CLEA|clen|GOST|HELO|helo|htpt|PASE)", "(HEADE|numer|optin|stati)", "(Januar|passin|perfec|PUNICODE|TEMPLAT)", diff --git a/lib/http2.c b/lib/http2.c index 36dca426de..2d7a571d10 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -2348,7 +2348,7 @@ static CURLcode cf_h2_send(struct Curl_cfilter *cf, struct Curl_easy *data, DEBUGASSERT(stream); } else if(stream->body_eos) { - /* We already wrote this, but CURLE_AGAINed the call due to not + /* We already wrote this, but CURLE_AGAIN-ed the call due to not * being able to flush stream->sendbuf. Make a 0-length write * to trigger flushing again. * If this works, we report to have written `len` bytes. */ diff --git a/lib/vtls/wolfssl.h b/lib/vtls/wolfssl.h index 19ca609c84..7ff4cfb881 100644 --- a/lib/vtls/wolfssl.h +++ b/lib/vtls/wolfssl.h @@ -44,7 +44,7 @@ struct wssl_ctx { struct WOLFSSL *ssl; CURLcode io_result; /* result of last BIO cfilter operation */ CURLcode hs_result; /* result of handshake */ - int io_send_blocked_len; /* length of last BIO write that EAGAINed */ + int io_send_blocked_len; /* length of last BIO write that EAGAIN-ed */ BIT(x509_store_setup); /* x509 store has been set up */ BIT(shutting_down); /* TLS is being shut down */ };