From 76ff22027d60f1a9f2750a6fff766e172b05e212 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 13 Jul 2025 01:53:25 +0200 Subject: [PATCH] ftp: slightly update comment to avoid typos exception --- .github/scripts/typos.toml | 2 +- lib/ftp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/typos.toml b/.github/scripts/typos.toml index 2fd1111d6b..ae87afdb08 100644 --- a/.github/scripts/typos.toml +++ b/.github/scripts/typos.toml @@ -7,7 +7,7 @@ extend-ignore-identifiers-re = [ "(ba|BA|FU|Iy|ND|OT|pn|PN|UE)", "(CNA|ECT|EDE|Jod|kno|ser|Typ|URE)", "(admi|alue|CLEA|clen|GOST|HELO|helo|htpt|PASE)", - "(HEADE|numer|optin|stati)", + "(numer|optin|stati)", "(Januar|passin|perfec|PUNICODE|TEMPLAT)", ] diff --git a/lib/ftp.c b/lib/ftp.c index 06c486bc91..4a1e3d6421 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -2067,7 +2067,7 @@ static CURLcode client_write_header(struct Curl_easy *data, * the body write callback when data->set.include_header is set * via CURLOPT_HEADER. * For historic reasons, FTP never played this game and expects - * all its HEADERs to do that always. Set that flag during the + * all its headers to do that always. Set that flag during the * call to Curl_client_write() so it does the right thing. * * Notice that we cannot enable this flag for FTP in general,