tidy-up: prefer "initialize" with a 'z'

To match the majority of usage in source.

Closes #21618
This commit is contained in:
Viktor Szakats 2026-05-15 00:37:37 +02:00
parent 3da249e1f0
commit 4780e509aa
No known key found for this signature in database
28 changed files with 42 additions and 42 deletions

View file

@ -231,7 +231,7 @@ static bool auth_digest_get_key_value(const char *chlg, const char *key,
static void auth_digest_get_qop_values(const char *options, int *value)
{
struct Curl_str out;
/* Initialise the output */
/* Initialize the output */
*value = 0;
while(!curlx_str_until(&options, &out, 32, ',')) {
@ -520,7 +520,7 @@ CURLcode Curl_auth_decode_digest_http_message(const char *chlg,
if(digest->nonce)
before = TRUE;
/* Clean up any former leftovers and initialise to defaults */
/* Clean up any former leftovers and initialize to defaults */
Curl_auth_digest_cleanup(digest);
for(;;) {

View file

@ -458,7 +458,7 @@ CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data,
(void)service;
(void)host;
/* Clean up any former leftovers and initialise to defaults */
/* Clean up any former leftovers and initialize to defaults */
Curl_auth_cleanup_ntlm(ntlm);
ntlmbuf = curl_maprintf(NTLMSSP_SIGNATURE "%c"

View file

@ -90,7 +90,7 @@ CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data,
const char *service = Curl_creds_has_sasl_service(creds) ?
Curl_creds_sasl_service(creds) : default_service;
/* Clean up any former leftovers and initialise to defaults */
/* Clean up any former leftovers and initialize to defaults */
Curl_auth_cleanup_ntlm(ntlm);
/* Query the security package for NTLM */