mirror of
https://github.com/curl/curl.git
synced 2026-08-24 23:43:40 +03:00
tidy-up: prefer "initialize" with a 'z'
To match the majority of usage in source. Closes #21618
This commit is contained in:
parent
3da249e1f0
commit
4780e509aa
28 changed files with 42 additions and 42 deletions
|
|
@ -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(;;) {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue