mirror of
https://github.com/curl/curl.git
synced 2026-08-26 02:43:31 +03:00
tidy-up: miscellaneous
- `N byte` -> `N-byte` or `N bytes`. - INTERNALS.md: language tweaks. - schannel: language tweak in comment/error message. - socks_gssapi, socks_sspi: simplify composing an error message. (at a cost of 8 extra constant string bytes.) - m4/curl-compilers.m4: fix typo in link (in comment). - contrithanks.sh: fix indent, drop stray `;` terminator. - lib, src, tests: drop/fix a bunch of badwords. - fix typos in comments. - fix indent, stray spaces. Some of these spotted by GitHub Code Quality and Copilot Closes #22009
This commit is contained in:
parent
5bff1c35f1
commit
0ffab25b6c
158 changed files with 357 additions and 366 deletions
|
|
@ -2611,7 +2611,7 @@ static CURLcode myssh_connect(struct Curl_easy *data, bool *done)
|
|||
|
||||
sshc->ssh_session = ssh_new();
|
||||
if(!sshc->ssh_session) {
|
||||
failf(data, "Failure initialising ssh session");
|
||||
failf(data, "Failure initializing ssh session");
|
||||
return CURLE_FAILED_INIT;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3486,7 +3486,7 @@ static CURLcode ssh_connect(struct Curl_easy *data, bool *done)
|
|||
my_libssh2_realloc, data);
|
||||
|
||||
if(!sshc->ssh_session) {
|
||||
failf(data, "Failure initialising ssh session");
|
||||
failf(data, "Failure initializing ssh session");
|
||||
return CURLE_FAILED_INIT;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue