ntml_wb: fix buffer type typo

Closes #12825
This commit is contained in:
Stefan Eissing 2024-01-31 12:14:34 +01:00 committed by Daniel Stenberg
parent 2f3e7a26bc
commit e75a48d2c3
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -266,7 +266,7 @@ static CURLcode ntlm_wb_response(struct Curl_easy *data, struct ntlmdata *ntlm,
size_t len_in = strlen(input), len_out = 0;
struct dynbuf b;
char *ptr = NULL;
usigned char buf[1024]
unsigned char buf[1024];
Curl_dyn_init(&b, MAX_NTLM_WB_RESPONSE);
while(len_in > 0) {