]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
ntml_wb: fix buffer type typo
authorStefan Eissing <stefan@eissing.org>
Wed, 31 Jan 2024 11:14:34 +0000 (12:14 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 1 Feb 2024 12:04:56 +0000 (13:04 +0100)
Closes #12825

lib/curl_ntlm_wb.c

index 0c7892ab702722622c9cf4ab574f82ab8f01cc50..acb0093956ba085153716704c1a0baf7074a862a 100644 (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) {